adding rss module from aikaterna to fix double post issue

This commit is contained in:
Juni
2022-12-09 09:52:45 -05:00
parent dfb2d00607
commit c53eea9841
7 changed files with 1938 additions and 0 deletions

11
rss/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
from redbot.core import commands
from .rss import RSS
__red_end_user_data_statement__ = "This cog does not persistently store data or metadata about users."
async def setup(bot: commands.Bot):
n = RSS(bot)
bot.add_cog(n)
n.initialize()