6 lines
90 B
Python

app = FastAPI()
@app.get("/health")
async def read_health():
return {"status": "ok"}