feat: Simple twitch component.

This commit is contained in:
2025-09-01 22:09:38 +10:00
parent 5fa0df66f5
commit 543a65b7fb
4 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from typing import TYPE_CHECKING
from .. import logger
if TYPE_CHECKING:
from meta.bot import Bot
async def setup(bot: 'Bot'):
from .component import ProfileComponent
await bot.add_component(ProfileComponent(bot))