| 13 | ) |
| 14 | |
| 15 | type Program struct { |
| 16 | cfg Config |
| 17 | cmd *exec.Cmd |
| 18 | svc service.Service |
| 19 | exit chan struct{} |
| 20 | log io.Writer |
| 21 | } |
| 22 | |
| 23 | func (p *Program) Start(s service.Service) error { |
| 24 | // Look for exec. |
nothing calls this directly
no outgoing calls
no test coverage detected