mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 02:41:06 -05:00
8 lines
242 B
Python
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']
|