mirror of
https://github.com/nirvana-7777/script.service.ultimate.git
synced 2026-09-19 23:52:10 +02:00
13 lines
312 B
Python
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"]
|