rewrite: Sysadmin module.

This commit is contained in:
2022-11-18 08:49:21 +02:00
parent 860660d152
commit 09e7a36c9f
11 changed files with 1659 additions and 276 deletions

View File

@@ -1,2 +1,11 @@
this_package = 'modules'
active = [
'.sysadmin',
'.test'
]
async def setup(bot):
await bot.load_extension('modules.bot_admin')
for ext in active:
await bot.load_extension(ext, package=this_package)