feat: Start twitch user auth module.

This commit is contained in:
2024-09-06 10:59:47 +10:00
parent 7069c87e8e
commit 41f755795f
4 changed files with 75 additions and 0 deletions

9
src/twitch/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
import logging
logger = logging.getLogger(__name__)
from .cog import TwitchAuthCog
async def setup(bot):
await bot.add_cog(TwitchAuthCog(bot))