fix: Actually import the exec module

This commit is contained in:
2025-10-30 23:24:48 +10:00
parent 9e73708972
commit 1311574360

View File

@@ -4,9 +4,11 @@ if TYPE_CHECKING:
from meta import Bot
async def twitch_setup(bot: 'Bot'):
async def twitch_setup(bot: "Bot"):
# Import and run setup methods from each module
from . import profiles, tracker, subathon
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)