github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/command/v2/staging_security_groups_command.go (about)

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