2020-09-18 15:33:01 -04:00
|
|
|
from redbot.core import commands
|
|
|
|
|
|
|
|
|
|
from .rss import RSS
|
|
|
|
|
|
2021-10-19 01:56:05 +02:00
|
|
|
__red_end_user_data_statement__ = "This cog does not persistently store data or metadata about users."
|
|
|
|
|
|
2020-09-18 15:33:01 -04:00
|
|
|
|
|
|
|
|
async def setup(bot: commands.Bot):
|
|
|
|
|
n = RSS(bot)
|
|
|
|
|
bot.add_cog(n)
|
|
|
|
|
n.initialize()
|