mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
* ✨ Add ORJSONResponse * 📝 Add tutorial using ORJSONResponse * ✅ Add test for ORJSONResponse * 📝 Update index.md
9 lines
199 B
Python
9 lines
199 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import ORJSONResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/", response_class=ORJSONResponse)
|
|
async def read_items():
|
|
return [{"item_id": "Foo"}]
|