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

@@ -3,3 +3,9 @@ import logging
logger = logging.getLogger(__name__)
from .discord import setup
from .twitch import setup as twitch_setup
__all__ = (
'setup',
'twitch_setup',
)