mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-14 16:21:08 -05:00
9 lines
161 B
Python
9 lines
161 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI(docs_url="/documentation", redoc_url=None)
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return [{"name": "Foo"}]
|