func(name string, arg ...string) ([]byte, error)
| 86 | } |
| 87 | |
| 88 | type CmdExecutor func(name string, arg ...string) ([]byte, error) |
| 89 | |
| 90 | func DefaultCmdExecutor(name string, arg ...string) ([]byte, error) { |
| 91 | return exec.Command(name, arg...).CombinedOutput() |
nothing calls this directly
no outgoing calls
no test coverage detected