| 6 | ) |
| 7 | |
| 8 | type ExecCustomProcess struct { |
| 9 | ExitCode int |
| 10 | Stdout string |
| 11 | Stderr string |
| 12 | OnStart func(name string, args []string) |
| 13 | } |
| 14 | |
| 15 | func (e ExecCustomProcess) Command(name string, args ...string) ExecCmd { |
| 16 | return ExecCustomCmd{ |
nothing calls this directly
no outgoing calls
no test coverage detected