(hidden_path: str = Path(include_in_schema=False))
| 22 | |
| 23 | @app.get("/hidden_path/{hidden_path}") |
| 24 | async def hidden_path(hidden_path: str = Path(include_in_schema=False)): |
| 25 | return {"hidden_path": hidden_path} |
| 26 | |
| 27 | |
| 28 | @app.get("/hidden_query") |
nothing calls this directly
no test coverage detected
searching dependent graphs…