fastapi/docs_src/async_tests/main.py

9 lines
112 B
Python

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