* wait I forgot to comit locally * cp the entire core directory and then rm the .git subdir
11 lines
139 B
Python
11 lines
139 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Health(BaseModel):
|
|
"""
|
|
Health check response body
|
|
"""
|
|
|
|
version: str
|
|
status: str
|