Files
anime-qize/backend/app/openings_downloader/services/__init__.py

11 lines
263 B
Python
Raw Normal View History

2026-01-10 11:06:45 +03:00
# Services for Openings Downloader
from .animethemes import AnimeThemesService
from .downloader import DownloadService
from .storage_tracker import StorageTrackerService
__all__ = [
"AnimeThemesService",
"DownloadService",
"StorageTrackerService",
]