FrancoisHB's picture
first commit
87d225f
raw
history blame contribute delete
No virus
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
return {"hello":"Hello Walter"}