apiExample / app /main.py
rwheel's picture
Upload 4 files
3c80574
raw
history blame
139 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/items/{name}")
async def say_hello(name):
return {"message": f"Hello {name}!"}