(config command.Config, ui command.UI)
| 26 | } |
| 27 | |
| 28 | func (cmd *UninstallPluginCommand) Setup(config command.Config, ui command.UI) error { |
| 29 | cmd.Config = config |
| 30 | cmd.UI = ui |
| 31 | cmd.Actor = pluginaction.NewActor(config, nil) |
| 32 | return nil |
| 33 | } |
| 34 | |
| 35 | func (cmd UninstallPluginCommand) Execute(args []string) error { |
| 36 | pluginName := cmd.RequiredArgs.PluginName |
nothing calls this directly
no test coverage detected