Synced repo using 'sync_with_huggingface' Github Action
Browse files
app.py
CHANGED
@@ -56,7 +56,9 @@ async def on_ready():
|
|
56 |
event.set()
|
57 |
|
58 |
|
59 |
-
@bot.hybrid_command(
|
|
|
|
|
60 |
async def ping(ctx):
|
61 |
await ctx.respond(f"{bot.latency*1000:.0f}ms")
|
62 |
|
|
|
56 |
event.set()
|
57 |
|
58 |
|
59 |
+
@bot.hybrid_command(
|
60 |
+
name="ping",
|
61 |
+
description="ping")
|
62 |
async def ping(ctx):
|
63 |
await ctx.respond(f"{bot.latency*1000:.0f}ms")
|
64 |
|