Files
croccybot/bot/modules/__init__.py
2022-12-23 06:10:21 +02:00

17 lines
255 B
Python

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