mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 10:51:05 -05:00
14 lines
476 B
Python
14 lines
476 B
Python
"""VideoArchiver cog for Red-DiscordBot"""
|
|
|
|
from redbot.core.bot import Red
|
|
from redbot.core.utils import get_end_user_data_statement
|
|
|
|
from videoarchiver.video_archiver import VideoArchiver
|
|
from videoarchiver.ffmpeg.ffmpeg_manager import FFmpegManager
|
|
from videoarchiver.ffmpeg.exceptions import FFmpegError, GPUError, DownloadError
|
|
|
|
__red_end_user_data_statement__ = get_end_user_data_statement(__file__)
|
|
|
|
async def setup(bot: Red):
|
|
await bot.add_cog(VideoArchiver(bot))
|