17 lines
270 B
Python
17 lines
270 B
Python
this_package = "modules"
|
|
|
|
active = [
|
|
".sysadmin",
|
|
".profiles",
|
|
".voicefix",
|
|
".messagelogger",
|
|
".voicelog",
|
|
".yarn",
|
|
".pluscampaign",
|
|
]
|
|
|
|
|
|
async def setup(bot):
|
|
for ext in active:
|
|
await bot.load_extension(ext, package=this_package)
|