(websocket: WebSocket, pathparam: str, queryparam: str)
| 49 | |
| 50 | @router.websocket("/router/{pathparam:path}") |
| 51 | async def routerindexparams(websocket: WebSocket, pathparam: str, queryparam: str): |
| 52 | await websocket.accept() |
| 53 | await websocket.send_text(pathparam) |
| 54 | await websocket.send_text(queryparam) |
| 55 | await websocket.close() |
| 56 | |
| 57 | |
| 58 | async def ws_dependency(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…