github.com/nimakaviani/cli@v6.37.1-0.20180619223813-e734901a73fa+incompatible/command/v2/delete_service_auth_token_command.go (about) 1 package v2 2 3 import ( 4 "code.cloudfoundry.org/cli/command" 5 "code.cloudfoundry.org/cli/command/flag" 6 "code.cloudfoundry.org/cli/command/translatableerror" 7 ) 8 9 type DeleteServiceAuthTokenCommand struct { 10 RequiredArgs flag.DeleteServiceAuthTokenArgs `positional-args:"yes"` 11 Force bool `short:"f" description:"Force deletion without confirmation"` 12 usage interface{} `usage:"CF_NAME delete-service-auth-token LABEL PROVIDER [-f]"` 13 } 14 15 func (DeleteServiceAuthTokenCommand) Setup(config command.Config, ui command.UI) error { 16 return nil 17 } 18 19 func (DeleteServiceAuthTokenCommand) Execute(args []string) error { 20 return translatableerror.UnrefactoredCommandError{} 21 }