12 lines
252 B
Python
12 lines
252 B
Python
|
|
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()
|