github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/command/v2/service_auth_tokens_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 ServiceAuthTokensCommand struct {
     9  	usage interface{} `usage:"CF_NAME service-auth-tokens"`
    10  }
    11  
    12  func (ServiceAuthTokensCommand) Setup(config command.Config, ui command.UI) error {
    13  	return nil
    14  }
    15  
    16  func (ServiceAuthTokensCommand) Execute(args []string) error {
    17  	return translatableerror.UnrefactoredCommandError{}
    18  }