mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 10:51:05 -05:00
11 lines
279 B
Python
11 lines
279 B
Python
"""Core module for VideoArchiver cog"""
|
|
|
|
try:
|
|
# Try relative imports first
|
|
from .base import VideoArchiver
|
|
except ImportError:
|
|
# Fall back to absolute imports if relative imports fail
|
|
from videoarchiver.core.base import VideoArchiver
|
|
|
|
__all__ = ["VideoArchiver"]
|