lenaverse-bot/lenaverse_bot/core/commands.py

12 lines
229 B
Python
Raw Normal View History

2023-11-17 10:49:50 +00:00
from discord.ext import commands
@commands.hybrid_command()
async def ping(ctx: commands.Context):
await ctx.send("pong")
@commands.hybrid_command()
async def foo(ctx: commands.Context, arg: str):
await ctx.send(arg)