Implement the sshClient interface for external ssh programs
| 18 | |
| 19 | // Implement the sshClient interface for external ssh programs |
| 20 | type sshClientExternal struct { |
| 21 | f *Fs |
| 22 | session *sshSessionExternal |
| 23 | } |
| 24 | |
| 25 | func (f *Fs) newSSHClientExternal() (sshClient, error) { |
| 26 | return &sshClientExternal{f: f}, nil |
nothing calls this directly
no outgoing calls
no test coverage detected