constellation/cli/internal/cmd/helmloader.go

14 lines
210 B
Go
Raw Normal View History

2022-08-12 08:20:19 +00:00
package cmd
type helmLoader interface {
Load(csp string) ([]byte, error)
}
type stubHelmLoader struct {
loadErr error
}
func (d *stubHelmLoader) Load(csp string) ([]byte, error) {
return nil, d.loadErr
}