rewrite: Restructure to include GUI.

This commit is contained in:
2022-12-23 06:44:32 +02:00
parent 2b93354248
commit f328324747
224 changed files with 8 additions and 0 deletions

16
src/modules/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
this_package = 'modules'
active = [
'.sysadmin',
'.config',
'.economy',
'.reminders',
'.shop',
'.tasklist',
'.test',
]
async def setup(bot):
for ext in active:
await bot.load_extension(ext, package=this_package)