Files
script.service.ultimate/lib/streaming_providers/base/epg/__init__.py
T
2026-01-06 16:41:03 +01:00

13 lines
312 B
Python

#!/usr/bin/env python3
# streaming_providers/base/epg/__init__.py
"""
EPG Module for XMLTV EPG handling
"""
from .epg_cache import EPGCache
from .epg_manager import EPGManager
from .epg_mapping import EPGMapping
from .epg_parser import EPGParser
__all__ = ["EPGManager", "EPGCache", "EPGMapping", "EPGParser"]