Initial commit

This commit is contained in:
Tuxverse
2025-08-25 13:19:00 +10:00
commit c33cc325ce
51 changed files with 8694 additions and 0 deletions

8
src/core/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
from babel import LocalBabel
babel = LocalBabel('core')
async def setup(bot):
from .cog import CoreCog
await bot.add_cog(CoreCog(bot))