Files
script.service.ultimate/lib/streaming_providers/providers/movetv/__init__.py
T
2026-03-25 11:20:50 +01:00

12 lines
321 B
Python

# streaming_providers/providers/movetv/__init__.py
from .provider import MoveTVProvider, MoveTVChannel
from .auth import MoveTVAuthenticator, MoveTVAuthToken
from .constants import MoveTVConfig
__all__ = [
"MoveTVProvider",
"MoveTVChannel",
"MoveTVAuthenticator",
"MoveTVAuthToken",
"MoveTVConfig",
]