package tools type ( helm struct{} ) func Helm() *helm { return &helm{} } func (h *helm) Values() {} func (h *helm) Value(key string, value any) {} func (h *helm) ValuesFile() {} func (h *helm) LS() {} func (h *helm) Install() {} func (h *helm) Upgrade() {} func (h *helm) Uninstall() {}