diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +from discord.ext.commands import Bot, when_mentioned_or + +from config import token +from util import load_all_modules + +bot = Bot(command_prefix=when_mentioned_or('!')) + +load_all_modules(bot) + +if __name__ == '__main__': + bot.run(token) |