summaryrefslogtreecommitdiff
path: root/app/main.py
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-14 13:31:28 +0200
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-14 13:31:28 +0200
commit4d3aa54f80f4ac3bdf927e3746478cec3bcb35e9 (patch)
tree6cb0d249f3c2a1de01365dd78d97916297d07f9f /app/main.py
Initial commit
Diffstat (limited to 'app/main.py')
-rw-r--r--app/main.py10
1 files changed, 10 insertions, 0 deletions
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}