From 31bebaf2471fab3485caf98c6b2e584d50575890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Trkan?= Date: Sun, 5 Oct 2025 22:53:51 +0200 Subject: [PATCH] test pr deploy --- 7project/backend/app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7project/backend/app/app.py b/7project/backend/app/app.py index 6349483..2a1dd6d 100644 --- a/7project/backend/app/app.py +++ b/7project/backend/app/app.py @@ -48,7 +48,7 @@ app.include_router( # Liveness/root endpoint @app.get("/", include_in_schema=False) async def root(): - return {"status": "ok"} + return {"status": "ok", "message": "Welcome to the FastAPI application!"} @app.get("/authenticated-route")