| 77 | } |
| 78 | |
| 79 | type Process struct { |
| 80 | cmd *exec.Cmd |
| 81 | ctx context.Context |
| 82 | exitCh chan error |
| 83 | closeOnce once.Error |
| 84 | } |
| 85 | |
| 86 | func (p *Process) Start() error { |
| 87 | if err := p.cmd.Start(); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected