mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 02:41:06 -05:00
Removed the separate commands cog loading from init.py since all commands are now part of the main VideoArchiver class Verified the core/init.py is correctly exporting the VideoArchiver class Removed the redundant video_archiver.py file These changes should resolve both the "No module named 'videoarchiver.commands'" error and the asyncio-related issues by: Eliminating circular imports that could cause import-time issues Simplifying the cog loading process to only load the main VideoArchiver class Ensuring proper module structure and exports
18 lines
305 B
Python
18 lines
305 B
Python
"""Re-export video processing components from processor module"""
|
|
|
|
from .processor import (
|
|
VideoProcessor,
|
|
REACTIONS,
|
|
ProgressTracker,
|
|
MessageHandler,
|
|
QueueHandler
|
|
)
|
|
|
|
__all__ = [
|
|
'VideoProcessor',
|
|
'REACTIONS',
|
|
'ProgressTracker',
|
|
'MessageHandler',
|
|
'QueueHandler'
|
|
]
|