12 lines
168 B
Python
12 lines
168 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class HealthCheck(BaseModel):
|
|
"""
|
|
Health check response model.
|
|
"""
|
|
|
|
status: str
|
|
database: str
|
|
api_version: str
|