Files
mrtuxie-discord/src/modules/__init__.py

13 lines
195 B
Python

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