package helm import ( ) type HelmCommandInterface interface { Status(string) (string, error) AddRepository(HelmRepo) (string, error) } type HelmCommandData struct { Bin string } type RealHelmCommand HelmCommandData