9 lines
219 B
Python
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 |