oc-deploy/src/helm/command.go
2024-09-09 07:38:43 +00:00

17 lines
248 B
Go

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