Add module setup methods.

This commit is contained in:
2025-09-01 22:15:57 +10:00
parent aba34799e1
commit 6667dc7263

View File

@@ -6,6 +6,7 @@ if TYPE_CHECKING:
async def twitch_setup(bot: 'Bot'): async def twitch_setup(bot: 'Bot'):
# Import and run setup methods from each module # Import and run setup methods from each module
# from . import module from . import profiles, tracker, subathon
# await module.twitch_setup(bot) await profiles.twitch_setup(bot)
pass await tracker.twitch_setup(bot)
await subathon.twitch_setup(bot)