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__":