From 4d3aa54f80f4ac3bdf927e3746478cec3bcb35e9 Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr Date: Sat, 14 Mar 2026 13:31:28 +0200 Subject: Initial commit --- app/main.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app/main.py (limited to 'app/main.py') diff --git a/app/main.py b/app/main.py new file mode 100644 index 0000000..701c030 --- /dev/null +++ b/app/main.py @@ -0,0 +1,10 @@ +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + + msg = "Hello Berries!" + return {"message": msg} -- cgit v1.3-3-g829e