(&mut self)
| 2210 | #[cfg(unix)] |
| 2211 | impl crate::mcp::McpTransport for UnixStreamTransport { |
| 2212 | async fn read_line(&mut self) -> std::io::Result<Option<String>> { |
| 2213 | self.reader.next_line().await |
| 2214 | } |
| 2215 | |
| 2216 | async fn write_line(&mut self, line: &str) -> std::io::Result<()> { |
| 2217 | self.writer.write_all(line.as_bytes()).await |
no outgoing calls
no test coverage detected