Add FastAPI hello world

This commit is contained in:
Agent
2026-05-20 16:33:40 +00:00
parent a533ed4d1e
commit 72d1f6dd3f
+7
View File
@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def read_root():
return {'Hello': 'World'}