feat (reminders): Add simple twitch reminders.

This commit is contained in:
2025-05-23 18:17:04 +10:00
parent d1114f1a06
commit c5e9cb1488
4 changed files with 340 additions and 2 deletions

View File

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