| 20 | ) |
| 21 | |
| 22 | type SSHBatchClient struct { |
| 23 | maxRetries int |
| 24 | transfer *ssh.SSHTransfer |
| 25 | } |
| 26 | |
| 27 | func (a *SSHBatchClient) batchInternal(args []string, batchLines []string) (int, []string, []string, error) { |
| 28 | conn, err := a.transfer.Connection(0) |
nothing calls this directly
no outgoing calls
no test coverage detected