The backend component to interface with the smart contract.
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- from pydantic import BaseModel
-
-
- class User(BaseModel):
- session_id: str
- auth_date: int
- username: str
- first_name: str
- last_name: str
- photo_url: str
-
-
- class AuthenticationRequest(BaseModel):
- id: int
- auth_date: int
- username: str
- first_name: str
- last_name: str
- photo_url: str
|