diff --git a/src/app/__pycache__/main.cpython-311.pyc b/src/app/__pycache__/main.cpython-311.pyc index f1af5f1..22be6db 100644 Binary files a/src/app/__pycache__/main.cpython-311.pyc and b/src/app/__pycache__/main.cpython-311.pyc differ diff --git a/src/app/main.py b/src/app/main.py index 570895b..e337130 100644 --- a/src/app/main.py +++ b/src/app/main.py @@ -5,7 +5,7 @@ app = FastAPI() @app.get("/health/{Status}") def get_health(Status: int, q: str = "ok"): - return {"Status": Status, "q": q} + return {"Health": Status, "Status": q} @app.get("/items/{item_id}")