Add latency command

This commit is contained in:
Nexus 2024-08-03 01:27:44 +01:00
parent c998ced71a
commit 97d68569e0

9
app/modules/latency.py Normal file
View file

@ -0,0 +1,9 @@
import niobot
class LatencyModule(niobot.Module):
@niobot.command("latency")
async def latency(self, ctx: niobot.Context):
"""See the bot's latency."""
latency = ctx.latency
return await ctx.respond("Latency: {:.2f}ms".format(latency * 1000))