Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/bots/discord/slash/tweet.py
2023-08-12 01:35:11 +08:00

12 lines
340 B
Python

import discord
from bots.discord.client import client
from bots.discord.slash_parser import slash_parser
tweet = client.create_group("tweet", "获取推文摘要")
@tweet.command()
@discord.option(name="tweetid", description="推文ID")
async def get(ctx: discord.ApplicationContext, tweetid: str):
await slash_parser(ctx, tweetid)