doe/be/app/schemas/health.py
mohamad 4b7415e1c3 weeee💃
2025-03-30 16:02:49 +02:00

9 lines
219 B
Python

# app/schemas/health.py
from pydantic import BaseModel
class HealthStatus(BaseModel):
"""
Response model for the health check endpoint.
"""
status: str = "ok" # Provide a default value
database: str