NewUninstall creates a new Uninstall object with the given configuration.
(cfg *Configuration)
| 53 | |
| 54 | // NewUninstall creates a new Uninstall object with the given configuration. |
| 55 | func NewUninstall(cfg *Configuration) *Uninstall { |
| 56 | return &Uninstall{ |
| 57 | cfg: cfg, |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | // Run uninstalls the given release. |
| 62 | func (u *Uninstall) Run(name string) (*releasei.UninstallReleaseResponse, error) { |
no outgoing calls
searching dependent graphs…