| 3 | import "os/exec" |
| 4 | |
| 5 | type ExecDefaultProcess struct { |
| 6 | } |
| 7 | |
| 8 | func (e ExecDefaultProcess) Command(name string, args ...string) ExecCmd { |
| 9 | return ExecDefaultCmd{exec.Command(name, args...)} |
nothing calls this directly
no outgoing calls
no test coverage detected