mitlist/be/app/schemas/health.py
2025-05-07 23:30:23 +02:00

10 lines
278 B
Python

# app/schemas/health.py
from pydantic import BaseModel
from app.config import settings
class HealthStatus(BaseModel):
"""
Response model for the health check endpoint.
"""
status: str = settings.HEALTH_STATUS_OK # Use configured default value
database: str