Files
script.service.ultimate/lib/streaming_providers/base/__init__.py
T

20 lines
449 B
Python
Raw Normal View History

2025-10-29 20:23:50 +01:00
# streaming_providers/base/__init__.py
"""
Base module for streaming providers
This module contains the core abstractions and models used by all providers.
"""
2026-01-06 16:41:03 +01:00
from .drm import DRMPlugin, DRMPluginManager
from .manager import ProviderManager
2025-10-29 20:23:50 +01:00
from .models import StreamingChannel
from .provider import StreamingProvider
__all__ = [
"StreamingChannel",
2026-01-06 16:41:03 +01:00
"StreamingProvider",
2025-10-29 20:23:50 +01:00
"ProviderManager",
"DRMPlugin",
"DRMPluginManager",
]