Files
croccybot/bot/modules/__init__.py

14 lines
210 B
Python

this_package = 'modules'
active = [
'.sysadmin',
'.test',
'.reminders',
'.economy',
]
async def setup(bot):
for ext in active:
await bot.load_extension(ext, package=this_package)