Coverage for docs_src/path_operation_advanced_configuration/tutorial001.py: 100%
5 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
1from fastapi import FastAPI 1abcdef
3app = FastAPI() 1abcdef
6@app.get("/items/", operation_id="some_specific_id_you_define") 1abcdef
7async def read_items(): 1abcdef
8 return [{"item_id": "Foo"}] 1ghijkl