2025-05-16 00:42:00 +00:00

11 lines
207 B
Python

from typing import Any
from pydantic import BaseModel
class HealthResponse(BaseModel):
"""Response schema for the health check endpoint"""
status: str
version: str
details: dict[str, Any]