| 7 | ) |
| 8 | |
| 9 | type Service interface { |
| 10 | IsInstalled(name string) bool |
| 11 | Install(ctx context.Context, name, execPath, namespace string) error |
| 12 | Remove(ctx context.Context, name string) error |
| 13 | ServiceName(name string) string |
| 14 | } |
| 15 | |
| 16 | func New() (Service, error) { |
| 17 | switch runtime.GOOS { |
no outgoing calls
no test coverage detected
searching dependent graphs…