aboutsummaryrefslogtreecommitdiff
path: root/main.py
blob: caf02e6e3d6e873216916120e7af3836e5ce2663 (plain)
1
2
3
4
5
6
7
8
9
10
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)