Spaces:
Running
on
Zero
Running
on
Zero
File size: 144 Bytes
df50319 |
1 2 3 4 5 6 7 8 |
from pydantic import BaseModel
class UserSchema(BaseModel):
username: str
password: str
profile: str
team_id: int
tags: str |