From c75f3b344cb9b9298836745ef6bd62430c5fefda Mon Sep 17 00:00:00 2001 From: Marijanela Date: Sat, 2 May 2026 08:36:58 +0200 Subject: [PATCH] dodavanje jos jedne rute --- main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.py b/main.py index 1bbde20..de85536 100644 --- a/main.py +++ b/main.py @@ -10,6 +10,10 @@ def health(): if not _healthy: return {"status": "unhealthy"}, 503 return {"status": "ok"} + +@app.get("/") +def root(): + return {"message":"Hello iz mog Docker containere"} @app.post("/break") def break_health():