mirror of
https://github.com/fastapi/fastapi.git
synced 2026-09-14 13:36:21 +08:00
9 lines
148 B
Python
9 lines
148 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/", include_in_schema=False)
|
|
async def read_items():
|
|
return [{"item_id": "Foo"}]
|