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