SSHClientImpl implements SSH command execution using Go's crypto/ssh library
| 19 | |
| 20 | // SSHClientImpl implements SSH command execution using Go's crypto/ssh library |
| 21 | type SSHClientImpl struct { |
| 22 | username string |
| 23 | authValue string |
| 24 | keyPath string |
| 25 | timeout time.Duration |
| 26 | port int |
| 27 | jumpHost JumpHostConfig |
| 28 | } |
| 29 | |
| 30 | func crSSHLogger() interfaces.Logger { |
| 31 | return logger.GetGlobalLogger() |
nothing calls this directly
no outgoing calls
no test coverage detected