Files
script.service.ultimate/lib/streaming_providers/base/epg/__init__.py
T
2025-12-03 11:48:36 +01:00

17 lines
329 B
Python

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