mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
14 lines
210 B
Go
14 lines
210 B
Go
|
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
|
||
|
}
|