DEBSOURCES
Skip Quicknav
sources / fastapi / 0.118.0-1 / docs_src / async_tests / main.py
12345678
from fastapi import FastAPI app = FastAPI() @app.get("/") async def root(): return {"message": "Tomato"}