diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-14 13:31:28 +0200 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-14 13:31:28 +0200 |
| commit | 4d3aa54f80f4ac3bdf927e3746478cec3bcb35e9 (patch) | |
| tree | 6cb0d249f3c2a1de01365dd78d97916297d07f9f /app/main.py | |
Initial commit
Diffstat (limited to 'app/main.py')
| -rw-r--r-- | app/main.py | 10 |
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} |
