(host Host, parts ...string)
| 54 | } |
| 55 | |
| 56 | func (sshCtx *SSHContext) Cmd(host Host, parts ...string) (*exec.Cmd, error) { |
| 57 | return sshCtx.CmdContext(context.TODO(), host, parts...) |
| 58 | } |
| 59 | |
| 60 | func (sshCtx *SSHContext) CmdContext(ctx context.Context, host Host, parts ...string) (*exec.Cmd, error) { |
| 61 |
no test coverage detected