Files
fastapi/docs_src/custom_response/tutorial001_py39.py
2025-12-17 21:41: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"}]