Compare commits

...

2 Commits

Author SHA1 Message Date
Agent e2b2d41ecb Add hello world 2026-05-22 01:55:37 +00:00
Agent 72d1f6dd3f Add FastAPI hello world 2026-05-20 16:33:40 +00:00
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def read_root():
return {'Hello': 'World'}
+7
View File
@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}