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