Initial commit.

This commit is contained in:
2025-09-01 19:20:14 +10:00
commit 65141312be
5 changed files with 558 additions and 0 deletions

7
subathons/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
import logging
logger = logging.getLogger()
async def setup(bot):
from .component import SubathonComponent
await bot.add_component(SubathonComponent(bot))