Coverage for docs_src / custom_response / tutorial001b_py310.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-12 18:15 +0000

1from fastapi import FastAPI 1abcd

2from fastapi.responses import ORJSONResponse 1abcd

3 

4app = FastAPI() 1abcd

5 

6 

7@app.get("/items/", response_class=ORJSONResponse) 1abcd

8async def read_items(): 1abcd

9 return ORJSONResponse([{"item_id": "Foo"}]) 1efg