Initial Template.

This commit is contained in:
2023-11-02 10:09:06 +02:00
commit 1ae7c60ba8
52 changed files with 6786 additions and 0 deletions

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

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