mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-01 07:25:55 -08:00
27 lines
618 B
Python
27 lines
618 B
Python
"""
|
|
Unified Media Registry for FastAnime.
|
|
|
|
This module provides a unified system for tracking both watch history and downloads
|
|
for anime, eliminating data duplication between separate systems.
|
|
"""
|
|
|
|
from .manager import MediaRegistryManager, get_media_registry
|
|
from .models import (
|
|
EpisodeStatus,
|
|
MediaRecord,
|
|
MediaRegistryIndex,
|
|
UserMediaData,
|
|
)
|
|
from .tracker import MediaTracker, get_media_tracker
|
|
|
|
__all__ = [
|
|
"MediaRegistryManager",
|
|
"get_media_registry",
|
|
"EpisodeStatus",
|
|
"MediaRecord",
|
|
"MediaRegistryIndex",
|
|
"UserMediaData",
|
|
"MediaTracker",
|
|
"get_media_tracker",
|
|
]
|