README / app.py
jgwill's picture
add:app
155c5d6
raw
history blame
133 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello(name: str = ""):
return {"message": f"Hello {name}"}