module ThreeScaleToolbox::Commands::ImportCommand

Public Class Methods

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

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