github.com/LukasHeimann/cloudfoundrycli/v8@v8.4.4/command/plugin/repo_plugins_command.go (about)

     1  package plugin
     2  
     3  import (
     4  	"github.com/LukasHeimann/cloudfoundrycli/v8/command"
     5  	"github.com/LukasHeimann/cloudfoundrycli/v8/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  }