availabili.tf/backend-flask/forms.py

8 lines
147 B
Python
Raw Normal View History

2024-11-02 12:33:27 -07:00
import pydantic
class User(pydantic.BaseModel):
steam_id: int = pydantic.Field(2)
class TestForm(pydantic.BaseModel):
value: str = "lol"