11 lines
163 B
Python
11 lines
163 B
Python
this_package = 'modules'
|
|
|
|
active = [
|
|
'.sysadmin',
|
|
]
|
|
|
|
|
|
async def setup(bot):
|
|
for ext in active:
|
|
await bot.load_extension(ext, package=this_package)
|