module ThreeScaleToolbox::Commands::AccountCommand

Public Class Methods

command() click to toggle source
# File lib/3scale_toolbox/commands/account_command.rb, line 8
def self.command
  Cri::Command.define do
    name        'account'
    usage       'acccount <sub-command> [options]'
    summary     'account super command'
    description 'Accounts commands'

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