The backend component to interface with the smart contract.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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
|