mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +01:00
8 lines
244 B
Python
8 lines
244 B
Python
|
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!")
|