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