(
py: Python<'_>,
url: PyBackedStr,
kwds: Option<WebSocketParams>,
)
| 119 | #[pyfunction] |
| 120 | #[pyo3(signature = (url, **kwds))] |
| 121 | pub fn websocket( |
| 122 | py: Python<'_>, |
| 123 | url: PyBackedStr, |
| 124 | kwds: Option<WebSocketParams>, |
| 125 | ) -> PyResult<Bound<'_, PyAny>> { |
| 126 | future_into_py(py, shortcut_websocket_request(url, kwds)) |
| 127 | } |
nothing calls this directly
no test coverage detected