Initial commit

This commit is contained in:
2025-09-03 20:36:22 +10:00
commit 26f29e6de7
8 changed files with 130 additions and 0 deletions

7
koans/__init__.py Normal file
View File

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