diff --git a/src/modules/__init__.py b/src/modules/__init__.py index 2acf5d6..d1dca64 100644 --- a/src/modules/__init__.py +++ b/src/modules/__init__.py @@ -4,9 +4,11 @@ if TYPE_CHECKING: from meta import Bot -async def twitch_setup(bot: 'Bot'): - # Import and run setup methods from each module - from . import profiles, tracker, subathon +async def twitch_setup(bot: "Bot"): + # Import and run setup methods from each module + from . import profiles, tracker, subathon, exec + await profiles.twitch_setup(bot) await tracker.twitch_setup(bot) await subathon.twitch_setup(bot) + await exec.twitch_setup(bot)