Spaces:
Running
on
Zero
Running
on
Zero
File size: 157 Bytes
a746d34 |
1 2 3 4 5 6 7 8 9 |
from pydantic import BaseModel
from app.models import Team
class TeamSchema(BaseModel):
id: int
name: str
class Config:
orm_mode = True |