DefaultRemoteExecutor is the standard implementation of remote command execution
| 123 | |
| 124 | // DefaultRemoteExecutor is the standard implementation of remote command execution |
| 125 | type DefaultRemoteExecutor struct{} |
| 126 | |
| 127 | func (d *DefaultRemoteExecutor) Execute(url *url.URL, config *restclient.Config, stdin io.Reader, stdout, stderr io.Writer, tty bool, terminalSizeQueue remotecommand.TerminalSizeQueue) error { |
| 128 | return d.ExecuteWithContext(context.Background(), url, config, stdin, stdout, stderr, tty, terminalSizeQueue) |
nothing calls this directly
no outgoing calls
no test coverage detected