Brandon209-Red-bot-Cogs/follower/__init__.py

10 lines
223 B
Python
Raw Normal View History

2021-03-03 22:26:55 +13:00
from .follower import Follower
__red_end_user_data_statement__ = (
"This cog does stores user's followers, who they are following, and opt in/out status."
)
2023-05-05 07:33:23 +12:00
async def setup(bot):
await bot.add_cog(Follower(bot))