github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/command/v6/running_environment_variable_group_command.go (about) 1 package v6 2 3 import ( 4 "code.cloudfoundry.org/cli/command" 5 "code.cloudfoundry.org/cli/command/translatableerror" 6 ) 7 8 type RunningEnvironmentVariableGroupCommand struct { 9 usage interface{} `usage:"CF_NAME running-environment-variable-group"` 10 relatedCommands interface{} `related_commands:"env, staging-environment-variable-group"` 11 } 12 13 func (RunningEnvironmentVariableGroupCommand) Setup(config command.Config, ui command.UI) error { 14 return nil 15 } 16 17 func (RunningEnvironmentVariableGroupCommand) Execute(args []string) error { 18 return translatableerror.UnrefactoredCommandError{} 19 }