feature: Add streamalerts cog.

This commit is contained in:
2024-08-18 21:51:38 +10:00
parent 019c80e1c5
commit 7e6dcb006f
8 changed files with 1408 additions and 1 deletions

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))