feat(commands/bot): add uptime

This commit is contained in:
2024-12-30 03:47:01 -05:00
parent 59c4b37831
commit 6b9172ef1b
6 changed files with 68 additions and 13 deletions

View File

@@ -92,6 +92,8 @@ async def on_message(message):
await commands.voice.pause(message)
case C.VOLUME:
await commands.voice.volume(message)
case C.UPTIME:
await commands.bot.uptime(message)
except Exception as e:
await message.reply(
f"exception occurred while processing command: ```\n{''.join(traceback.format_exception(e)).replace('`', '\\`')}```",