mirror of
https://github.com/daimyomizukagebay61/SteamPanel.git
synced 2026-07-25 11:44:28 +00:00
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
from .enums_pb2 import k_ESessionPersistence_Persistent
|
|
from .steammessages_auth.steamclient_pb2 import (
|
|
CAuthentication_BeginAuthSessionViaCredentials_Request,
|
|
CAuthentication_BeginAuthSessionViaCredentials_Response,
|
|
CAuthentication_GetPasswordRSAPublicKey_Request,
|
|
CAuthentication_GetPasswordRSAPublicKey_Response,
|
|
CAuthentication_PollAuthSessionStatus_Request,
|
|
CAuthentication_PollAuthSessionStatus_Response,
|
|
CAuthentication_UpdateAuthSessionWithSteamGuardCode_Request,
|
|
k_EAuthSessionGuardType_DeviceCode,
|
|
k_EAuthTokenPlatformType_WebBrowser,
|
|
)
|
|
|
|
|
|
__all__ = [
|
|
'CAuthentication_BeginAuthSessionViaCredentials_Request',
|
|
'CAuthentication_BeginAuthSessionViaCredentials_Response',
|
|
'CAuthentication_GetPasswordRSAPublicKey_Request',
|
|
'CAuthentication_GetPasswordRSAPublicKey_Response',
|
|
'CAuthentication_PollAuthSessionStatus_Request',
|
|
'CAuthentication_PollAuthSessionStatus_Response',
|
|
'CAuthentication_UpdateAuthSessionWithSteamGuardCode_Request',
|
|
'k_EAuthSessionGuardType_DeviceCode',
|
|
'k_EAuthTokenPlatformType_WebBrowser',
|
|
'k_ESessionPersistence_Persistent',
|
|
]
|