Files
fastapi/docs_src/custom_response/tutorial001_py310.py
2026-02-12 14:19:43 +01:00

10 lines
197 B
Python

from fastapi import FastAPI
from fastapi.responses import UJSONResponse
app = FastAPI()
@app.get("/items/", response_class=UJSONResponse)
async def read_items():
return [{"item_id": "Foo"}]