Files
fastapi/docs_src/async_tests/main.py
2020-08-08 20:01:18 +02:00

9 lines
112 B
Python

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