Files
fastapi/docs_src/custom_response/tutorial001b_py39.py
2025-12-17 21:41:43 +01:00

10 lines
215 B
Python

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