Initial commit

This commit is contained in:
HoloTech
2025-09-01 20:26:45 +10:00
commit 1f60610947
19 changed files with 1293 additions and 0 deletions

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

@@ -0,0 +1,11 @@
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from meta import Bot
async def twitch_setup(bot: 'Bot'):
# Import and run setup methods from each module
# from . import module
# await module.twitch_setup(bot)
pass