func(stdout, stderr *string, exitError *exec.ExitError, err error)
| 7 | ) |
| 8 | |
| 9 | type ExecCallback func(stdout, stderr *string, exitError *exec.ExitError, err error) |
| 10 | |
| 11 | func Exec(name string, args ...string) (stdout chan string, stderr chan string, exit chan error, err error) { |
| 12 | if name == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected