Initial command structure for bot

This commit is contained in:
Jeremy Zhang
2017-05-20 07:50:29 +00:00
parent 3ed1375475
commit b7b4187094
3 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,8 @@
class Commands():
def __init__(self, client, database):
self.client = client
self.database = database
async def ban(self, message):
pass
#await self.client.send_message(message.channel, "test test!")