(
handshake: &DaemonHandshake,
replay_line: Option<String>,
)
| 1166 | } |
| 1167 | |
| 1168 | pub async fn proxy_stdio_to_default_daemon( |
| 1169 | handshake: &DaemonHandshake, |
| 1170 | replay_line: Option<String>, |
| 1171 | ) -> Result<()> { |
| 1172 | let socket_path = default_available_socket_path()?; |
| 1173 | proxy_stdio_to_daemon(&socket_path, handshake, replay_line).await |
| 1174 | } |
| 1175 | |
| 1176 | #[cfg(unix)] |
| 1177 | pub async fn call_tool( |
nothing calls this directly
no test coverage detected