mirror of
https://github.com/nirvana-7777/script.service.ultimate.git
synced 2026-09-27 03:22:48 +02:00
26 lines
692 B
Python
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
|