mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-05-24 14:33:26 +00:00
6 lines
192 B
Python
6 lines
192 B
Python
import pydantic
|
|
|
|
|
|
class HealthResponse(pydantic.BaseModel):
|
|
status: str = pydantic.Field(default=..., examples=["healthy"], description="Схема доступности сервиса")
|