[RSS] Initial commit

This commit is contained in:
aikaterna
2020-09-18 15:33:01 -04:00
parent d9587b9c75
commit 8c877fe9fe
7 changed files with 911 additions and 0 deletions

9
rss/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
from redbot.core import commands
from .rss import RSS
async def setup(bot: commands.Bot):
n = RSS(bot)
bot.add_cog(n)
n.initialize()