Revert health endpoint response format to original

This commit is contained in:
Automated Action 2025-05-19 11:11:17 +00:00
parent 55992df074
commit 441ca423a5

View File

@ -36,7 +36,7 @@ app.include_router(frontend_router)
@app.get("/health", status_code=200) @app.get("/health", status_code=200)
def health(): def health():
"""Health check endpoint""" """Health check endpoint"""
return {"message": f"{settings.PROJECT_NAME} is healthy"} return {"status": "healthy"}
if __name__ == "__main__": if __name__ == "__main__":