Add files via upload

This commit is contained in:
Game_Time
2025-08-16 01:05:04 +05:00
committed by GitHub
parent 39536725a7
commit 1a99b7d3d1
6 changed files with 1804 additions and 0 deletions

24
models.py Normal file
View File

@@ -0,0 +1,24 @@
from dataclasses import dataclass
from typing import Optional
@dataclass
class TokenData:
id_token: str
access_token: str
refresh_token: str
account_id: str
@dataclass
class AuthBundle:
api_key: Optional[str]
token_data: TokenData
last_refresh: str
@dataclass
class PkceCodes:
code_verifier: str
code_challenge: str