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