pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
8 lines
161 B
8 lines
161 B
from fastapi import FastAPI
|
|
|
|
app = FastAPI(docs_url="/documentation", redoc_url=None)
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return [{"name": "Foo"}]
|
|
|