| 5 | ) |
| 6 | |
| 7 | type ExecCustomCmd struct { |
| 8 | Name string |
| 9 | Args []string |
| 10 | Exit int |
| 11 | StdOut io.ReadCloser |
| 12 | StdErr io.ReadCloser |
| 13 | OnStart func(name string, args []string) |
| 14 | } |
| 15 | |
| 16 | func (c ExecCustomCmd) StdoutPipe() (io.ReadCloser, error) { |
| 17 | return c.StdOut, nil |
nothing calls this directly
no outgoing calls
no test coverage detected