fix: Update cog initialization

- Added proper Red-DiscordBot cog setup
- Added end user data statement
- Improved module organization
This commit is contained in:
pacnpal
2024-11-14 22:37:59 +00:00
parent 2ba89edbd9
commit a0b3a56d4f

View File

@@ -1 +1,11 @@
"""VideoArchiver cog for Red-DiscordBot"""
from redbot.core.bot import Red
from redbot.core.utils import get_end_user_data_statement
from .video_archiver import VideoArchiver
__red_end_user_data_statement__ = get_end_user_data_statement(__file__)
async def setup(bot: Red):
await bot.add_cog(VideoArchiver(bot))