Files
croccybot/bot/modules/__init__.py
2022-11-25 07:01:29 +02:00

13 lines
193 B
Python

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