Files
script.service.ultimate/lib/streaming_providers/providers/joyn/__init__.py
T
2026-01-16 12:24:41 +01:00

26 lines
692 B
Python

# streaming_providers/providers/joyn/__init__.py
from .auth import JoynAuthenticator, JoynAuthToken, JoynCredentials
from .constants import (
COUNTRY_TENANT_MAPPING,
DEFAULT_VIDEO_CONFIG,
JOYN_GRAPHQL_ENDPOINTS,
JOYN_STREAMING_ENDPOINTS,
)
from .models import JoynChannel, PlaybackRestrictedException
from .provider import JoynProvider
__all__ = [
"JoynProvider",
"JoynChannel",
"PlaybackRestrictedException",
"JoynAuthenticator",
"JoynAuthToken",
"JoynCredentials",
"COUNTRY_TENANT_MAPPING",
"DEFAULT_VIDEO_CONFIG",
"JOYN_GRAPHQL_ENDPOINTS",
"JOYN_STREAMING_ENDPOINTS",
]
__version__ = "1.1.0" # Updated version for refactored code