(item: Item = Body(example={"data": "Data in Body example"}))
| 24 | |
| 25 | @app.post("/example/") |
| 26 | def example(item: Item = Body(example={"data": "Data in Body example"})): |
| 27 | return item |
| 28 | |
| 29 | @app.post("/examples/") |
| 30 | def examples( |
nothing calls this directly
no test coverage detected
searching dependent graphs…