Files
Pac-cogs/videoarchiver/ffmpeg/__init__.py
pacnpal c9872b123d fix
2024-11-14 22:31:37 +00:00

8 lines
242 B
Python

"""FFmpeg management package"""
from .exceptions import FFmpegError, GPUError, DownloadError
# Import the manager class directly in the modules that need it
# to avoid circular imports
__all__ = ['FFmpegError', 'GPUError', 'DownloadError']