Changed healthcheck endpoint output
Some checks failed
CI / Lint & Format (push) Successful in 1m8s
CI / Docker Build (push) Has been cancelled
CI / Tests (Pytest + Alembic + Postgres) (push) Has been cancelled

This commit is contained in:
2025-09-22 20:36:53 +01:00
parent f04b04339f
commit 6f95816fb4

View File

@@ -10,4 +10,4 @@ app.include_router(keys.router, prefix=f"{settings.API_V1_STR}/keys", tags=["key
# Health endpoint (useful for docker, agent and uptime) # Health endpoint (useful for docker, agent and uptime)
@app.get("/healthz") @app.get("/healthz")
def healthz(): def healthz():
return {"status": 'ok'} return {"ok": True}