From 55992df074a27b4a7f7c5269021cad206da5f548 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Mon, 19 May 2025 11:08:37 +0000 Subject: [PATCH] Update health endpoint to include API name in response --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index f7382f2..d8e4b2c 100644 --- a/main.py +++ b/main.py @@ -36,7 +36,7 @@ app.include_router(frontend_router) @app.get("/health", status_code=200) def health(): """Health check endpoint""" - return {"status": "healthy"} + return {"message": f"{settings.PROJECT_NAME} is healthy"} if __name__ == "__main__":