Files
Pac-cogs/videoarchiver/core/commands.py
pacnpal c830be2841 videoarchiver/config/validation_manager.py
videoarchiver/config/role_manager.py
videoarchiver/database/connection_manager.py
videoarchiver/database/schema_manager.py
videoarchiver/queue/cleaners/tracking_cleaner.py
videoarchiver/exceptions.py
videoarchiver/processor.py
videoarchiver/commands.py
videoarchiver/update_checker.py
videoarchiver/utils/path_manager.py
videoarchiver/utils/file_ops.py
videoarchiver/processor/message_validator.py
videoarchiver/utils/download_manager.py
2024-11-17 06:12:41 +00:00

14 lines
481 B
Python

"""Command handlers for VideoArchiver"""
# Commands have been moved to the VideoArchiver class in base.py
# This file is kept for backward compatibility and may be removed in a future version
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from videoarchiver.core.base import VideoArchiver
def setup_commands(cog: "VideoArchiver") -> None:
"""Command setup is now handled in the VideoArchiver class"""
pass # Commands are now defined in the VideoArchiver class