File size: 139 Bytes
3c80574
 
 
 
 
 
 
1
2
3
4
5
6
7
from fastapi import FastAPI

app = FastAPI()

@app.get("/items/{name}")
async def say_hello(name):
    return {"message": f"Hello {name}!"}