master/adapter/http/fastapi/schemas.py
2026-03-20 15:06:39 +03:00

17 lines
232 B
Python

from pydantic import BaseModel
class HealthResponse(BaseModel):
status: str
app: str
env: str
class UserResponse(BaseModel):
id: str
email: str
name: str
class ErrorResponse(BaseModel):
detail: str