| 16 | } |
| 17 | |
| 18 | type UninstallPluginCommand struct { |
| 19 | RequiredArgs flag.PluginName `positional-args:"yes"` |
| 20 | usage interface{} `usage:"CF_NAME uninstall-plugin PLUGIN-NAME"` |
| 21 | relatedCommands interface{} `related_commands:"plugins"` |
| 22 | |
| 23 | Config command.Config |
| 24 | UI command.UI |
| 25 | Actor UninstallPluginActor |
| 26 | } |
| 27 | |
| 28 | func (cmd *UninstallPluginCommand) Setup(config command.Config, ui command.UI) error { |
| 29 | cmd.Config = config |
nothing calls this directly
no outgoing calls
no test coverage detected