Coverage for docs_src / path_operation_advanced_configuration / tutorial003_py310.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from fastapi import FastAPI 1abcd
3app = FastAPI() 1abcd
6@app.get("/items/", include_in_schema=False) 1abcd
7async def read_items(): 1abcd
8 return [{"item_id": "Foo"}] 1efg