Initial Template Commit

This commit is contained in:
2026-07-22 17:43:19 +03:00
commit d3dc9c09e3
11 changed files with 132 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import logging
logger = logging.getLogger(__name__)
from .discord import setup
from .twitch import setup as twitch_setup
__all__ = (
'setup',
'twitch_setup',
)