(feature): Add basic streamalerts.

This commit is contained in:
2024-08-02 20:45:18 +10:00
commit 9ef95df034
5 changed files with 1355 additions and 0 deletions

8
__init__.py Normal file
View File

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