Files
Pac-cogs/videoarchiver/core/commands.py

14 lines
463 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 .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