From fc617d675186090edf2bd8933bffc12b7ec42009 Mon Sep 17 00:00:00 2001 From: Mihael Janjic Date: Tue, 26 May 2026 10:58:12 +0200 Subject: [PATCH] fix namespace --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 8982608..a224175 100644 --- a/app/main.py +++ b/app/main.py @@ -3,7 +3,7 @@ from fastapi import FastAPI app = FastAPI() @app.get("/") def root(): - return {"message": "Pozdrav svijete!", "autor": "VAĆ _KORISNIK"} + return {"message": "Pozdrav svijete!", "autor": "mihaeljanjic"} @app.get("/health") def health():