github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+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 }