code.cloudfoundry.org/cli@v7.1.0+incompatible/command/plugin/list_plugin_repos_command.go (about)

     1  package plugin
     2  
     3  import (
     4  	"code.cloudfoundry.org/cli/command"
     5  	"code.cloudfoundry.org/cli/command/translatableerror"
     6  )
     7  
     8  type ListPluginReposCommand struct {
     9  	usage           interface{} `usage:"CF_NAME list-plugin-repos"`
    10  	relatedCommands interface{} `related_commands:"add-plugin-repo, install-plugin"`
    11  }
    12  
    13  func (ListPluginReposCommand) Setup(config command.Config, ui command.UI) error {
    14  	return nil
    15  }
    16  
    17  func (ListPluginReposCommand) Execute(args []string) error {
    18  	return translatableerror.UnrefactoredCommandError{}
    19  }