SantosPatazca
primer despliegue FastAPI con Docker
c71e312
raw
history blame contribute delete
133 Bytes
from pydantic import BaseModel
class AuthResponse(BaseModel):
access_token: str
token_type: str = "bearer"
user_id: str