github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+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 }