adding rss module from aikaterna to fix double post issue
This commit is contained in:
11
rss/__init__.py
Normal file
11
rss/__init__.py
Normal 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()
|
||||
Reference in New Issue
Block a user