module ThreeScaleToolbox::Commands::ProxyConfigCommand

Public Class Methods

command() click to toggle source
# File lib/3scale_toolbox/commands/proxy_config_command.rb, line 15
def self.command
  Cri::Command.define do
    name        'proxy-config'
    usage       'proxy-config <sub-command> [options]'
    summary     'proxy-config super command'
    description 'Manage your Proxy Configurations'

    run do |_opts, _args, cmd|
      puts cmd.help
    end
  end
end