mirror of
https://github.com/nirvana-7777/script.service.ultimate.git
synced 2026-09-18 15:12:12 +02:00
34 lines
995 B
Python
34 lines
995 B
Python
# streaming_providers/base/auth/__init__.py
|
|
from .base_auth import BaseAuthenticator, BaseAuthToken
|
|
from .base_oauth2_auth import (
|
|
BaseOAuth2Authenticator,
|
|
OAuth2Error,
|
|
OIDCConfiguration,
|
|
SessionAwareHTTPManager,
|
|
)
|
|
from .credential_manager import CredentialManager
|
|
from .credentials import BaseCredentials, ClientCredentials, UserPasswordCredentials
|
|
from .session_manager import SessionManager
|
|
from .remote_login_extension import OAuth2RemoteLoginMixin
|
|
from .remote_login_manager import RemoteLoginManager, RemoteLoginSession
|
|
|
|
# Only export what consumers should use
|
|
__all__ = [
|
|
"BaseAuthenticator",
|
|
"BaseAuthToken",
|
|
"BaseCredentials",
|
|
"UserPasswordCredentials",
|
|
"ClientCredentials",
|
|
"SessionManager",
|
|
"CredentialManager",
|
|
# OAuth2 base
|
|
"BaseOAuth2Authenticator",
|
|
"OAuth2Error",
|
|
"OIDCConfiguration",
|
|
"SessionAwareHTTPManager",
|
|
# Remote login
|
|
"RemoteLoginManager",
|
|
"RemoteLoginSession",
|
|
"OAuth2RemoteLoginMixin",
|
|
]
|