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