mirror of
https://github.com/nirvana-7777/script.service.ultimate.git
synced 2026-09-22 17:12:16 +02:00
17 lines
329 B
Python
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'
|
|
] |