Files
Pac-cogs/videoarchiver/core/commands.py
2024-11-18 01:21:40 +00:00

17 lines
561 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:
# try:
from .base import VideoArchiver
# except ImportError:
# 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