9 lines
218 B
Python
9 lines
218 B
Python
import nerimity
|
|
|
|
import bot
|
|
|
|
def setup(bot: bot.Bot):
|
|
@bot.command(name="ping")
|
|
@bot.slash_command(name="ping", description="Ping...")
|
|
async def ping(ctx: nerimity.Context):
|
|
await ctx.send("Pong!")
|