Files
fastapi__fastapi/docs_src/custom_response/tutorial001b.py
T

10 lines
215 B
Python
Raw Normal View History

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"}])