From 06813940b54ef466e354db98b30803dfe8f5bb62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Eriksson?= Date: Mon, 11 Sep 2023 09:45:08 +0200 Subject: [PATCH] feat: change hello world endpoint --- pythonapi/src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonapi/src/main.py b/pythonapi/src/main.py index 30d4a45..63c960b 100644 --- a/pythonapi/src/main.py +++ b/pythonapi/src/main.py @@ -7,7 +7,7 @@ @app.get("/") def read_root(): - return {"Hello": "World"} + return {"Hello": "Preview World"} @app.get("/items/{item_id}")