github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+incompatible/command/v6/quotas_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 QuotasCommand struct {
     9  	usage interface{} `usage:"CF_NAME quotas"`
    10  }
    11  
    12  func (QuotasCommand) Setup(config command.Config, ui command.UI) error {
    13  	return nil
    14  }
    15  
    16  func (QuotasCommand) Execute(args []string) error {
    17  	return translatableerror.UnrefactoredCommandError{}
    18  }