mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
8 lines
148 B
Python
8 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"}]
|