mirror of
https://github.com/fastapi/fastapi.git
synced 2026-09-14 13:36:21 +08:00
836bb97a2d
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
9 lines
180 B
Python
9 lines
180 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/", openapi_extra={"x-aperture-labs-portal": "blue"})
|
|
async def read_items():
|
|
return [{"item_id": "portal-gun"}]
|