Files
lilacbot/src/modules/__init__.py

13 lines
201 B
Python

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