Files
fastapi/docs_src/custom_response/tutorial010_py310.py
2026-02-12 00:28:41 +01:00

10 lines
205 B
Python

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