github.com/sleungcy/cli@v7.1.0+incompatible/command/plugin/remove_plugin_repo_command.go (about) 1 package plugin 2 3 import ( 4 "code.cloudfoundry.org/cli/command" 5 "code.cloudfoundry.org/cli/command/flag" 6 "code.cloudfoundry.org/cli/command/translatableerror" 7 ) 8 9 type RemovePluginRepoCommand struct { 10 RequiredArgs flag.PluginRepoName `positional-args:"yes"` 11 usage interface{} `usage:"CF_NAME remove-plugin-repo REPO_NAME\n\nEXAMPLES:\n CF_NAME remove-plugin-repo PrivateRepo"` 12 relatedCommands interface{} `related_commands:"list-plugin-repos"` 13 } 14 15 func (RemovePluginRepoCommand) Setup(config command.Config, ui command.UI) error { 16 return nil 17 } 18 19 func (RemovePluginRepoCommand) Execute(args []string) error { 20 return translatableerror.UnrefactoredCommandError{} 21 }