great-ai/great_ai/views/health_check_response.py
2022-07-04 19:31:15 +02:00

8 lines
177 B
Python

from pydantic import BaseModel
from .cache_statistics import CacheStatistics
class HealthCheckResponse(BaseModel):
is_healthy: bool
cache_statistics: CacheStatistics