mitlist/be/app/schemas/health.py

10 lines
223 B
Python

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
database: str