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)