(f factory.Factory, client kubectl.Client, configPath string)
| 72 | } |
| 73 | |
| 74 | func LoadConfig(f factory.Factory, client kubectl.Client, configPath string) (config.Config, []types.Dependency, error) { |
| 75 | return LoadConfigWithOptions(f, client, configPath, &loader.ConfigOptions{}) |
| 76 | } |
| 77 | |
| 78 | func InterruptChan() (chan error, func()) { |
| 79 | once := sync.Once{} |
no test coverage detected