From f3c0f98991e4419c231538af84a0cc08a2ce09fd Mon Sep 17 00:00:00 2001 From: Nino Date: Tue, 26 May 2026 08:54:36 +0000 Subject: [PATCH 1/2] Update app/main.py --- app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.py b/app/main.py index 28fd323..0e5e58e 100644 --- a/app/main.py +++ b/app/main.py @@ -1,3 +1,5 @@ +from fastapi import FastAPI + app = FastAPI() @app.get("/") From 1ee7a5979beccd9bcfbc712ca695f08d301e3282 Mon Sep 17 00:00:00 2001 From: Nino Date: Tue, 26 May 2026 09:06:33 +0000 Subject: [PATCH 2/2] Update app/main.py --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 0e5e58e..fb5126f 100644 --- a/app/main.py +++ b/app/main.py @@ -4,7 +4,7 @@ app = FastAPI() @app.get("/") def root(): - return {"message": "Pozdrav svijete!", "autor": "VAŠ_KORISNIK"} + return {"message": "Pozdrav svijete!", "autor": "nikolahrkac"} @app.get("/health") def health(): @@ -15,7 +15,7 @@ app = FastAPI() @app.get("/") def root(): - return {"message": "Pozdrav svijete!", "autor": "VAŠ_KORISNIK"} + return {"message": "Pozdrav svijete!", "autor": "nikolahrkac"} @app.get("/health") def health():