(msg string)
| 376 | c.Disconnect(ctx) |
| 377 | } |
| 378 | |
| 379 | func (c *McpClient) nextID() int { |
| 380 | c.mu.Lock() |
| 381 | defer c.mu.Unlock() |
| 382 | c.requestID++ |
| 383 | return c.requestID |
| 384 | } |
| 385 | |
| 386 | func (c *McpClient) setError(msg string) { |
no outgoing calls
no test coverage detected