From e2b2d41ecb1144031061d604c08dd65f318d21e1 Mon Sep 17 00:00:00 2001 From: Agent Date: Fri, 22 May 2026 01:55:37 +0000 Subject: [PATCH] Add hello world --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..f5961e6 --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +from fastapi import FastAPI + +app = FastAPI() + +@app.get("/") +def read_root(): + return {"Hello": "World"}