Initial framework

This commit is contained in:
2025-07-24 03:33:42 +10:00
commit 9c0ae404c8
31 changed files with 3435 additions and 0 deletions

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

@@ -0,0 +1,15 @@
this_package = 'modules'
active = [
'.vstudio',
]
def prepare(bot):
for ext in active:
bot.load_module(this_package + ext)
async def setup(bot):
for ext in active:
await bot.load_module(this_package + ext)