10 lines
278 B
Python
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 |