github.com/lukasheimann/cloudfoundrycli@v7.1.0+incompatible/command/plugin/repo_plugins_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 RepoPluginsCommand struct {
     9  	RegisteredRepository string      `short:"r" description:"Name of a registered repository"`
    10  	usage                interface{} `usage:"CF_NAME repo-plugins [-r REPO_NAME]\n\nEXAMPLES:\n   CF_NAME repo-plugins -r PrivateRepo"`
    11  	relatedCommands      interface{} `related_commands:"add-plugin-repo, delete-plugin-repo, install-plugin"`
    12  }
    13  
    14  func (RepoPluginsCommand) Setup(config command.Config, ui command.UI) error {
    15  	return nil
    16  }
    17  
    18  func (RepoPluginsCommand) Execute(args []string) error {
    19  	return translatableerror.UnrefactoredCommandError{}
    20  }