Add hello world

This commit is contained in:
Agent
2026-05-22 01:55:37 +00:00
parent 72d1f6dd3f
commit e2b2d41ecb
+7
View File
@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}