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