| 95 | } |
| 96 | |
| 97 | type CmdStarter interface { |
| 98 | Start(cmd *exec.Cmd) ( |
| 99 | stdoutLines, stderrLines <-chan string, |
| 100 | waitError <-chan error, startErr error) |
| 101 | } |
| 102 | |
| 103 | type HealthChecker interface { |
| 104 | SetConfig(tlsDialAddrs []string, icmpTargetIPs []netip.Addr, smallCheckType string) |
nothing calls this directly
no outgoing calls
no test coverage detected