Sajad Rahimi 4083bb5f55
Add FastAPI (#1186)
Co-authored-by: Richie Bendall <richiebendall@gmail.com>
2021-12-21 16:02:50 +13:00

8 lines
122 B
Python

from fastapi import Body, FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}