(
State(state): State<AppState>,
websocket: WebSocketUpgrade,
)
| 1650 | } |
| 1651 | |
| 1652 | async fn native_inspector_connect( |
| 1653 | State(state): State<AppState>, |
| 1654 | websocket: WebSocketUpgrade, |
| 1655 | ) -> impl IntoResponse { |
| 1656 | websocket.on_upgrade(move |socket| async move { |
| 1657 | state.inspectors.handle_socket(socket).await; |
| 1658 | }) |
| 1659 | } |
| 1660 | |
| 1661 | async fn inspector_poll( |
| 1662 | State(state): State<AppState>, |
nothing calls this directly
no test coverage detected