mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-25 07:08:11 -05:00
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"}]
|