Add inventory DB cog and fix music cog

This commit is contained in:
rzmk 2021-07-27 13:49:48 -04:00
parent 743943effd
commit 0c21b2ee01
6 changed files with 137 additions and 33 deletions

View file

@ -9,6 +9,7 @@ class PingCog(commands.Cog):
# Commands
@commands.command(aliases=['latency'])
async def ping(self, ctx):
"""Returns the bot client latency"""
await ctx.send(f'Pong! {round(self.client.latency * 1000)}ms')
def setup(client):