apiExample / app /main.py
rwheel's picture
Update app/main.py
01c9470
raw
history blame
137 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/say_hello/")
async def say_hello(name):
return {"message": f"Hello {name}!"}