mirror of
https://code.lenaisten.de/Lenaisten/lenaverse-bot.git
synced 2024-11-22 15:03:01 +00:00
11 lines
229 B
Python
11 lines
229 B
Python
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)
|