module ThreeScaleToolbox::Commands::PolicyRegistryCommand

Public Class Methods

command() click to toggle source
# File lib/3scale_toolbox/commands/policy_registry_command.rb, line 7
def self.command
  Cri::Command.define do
    name        'policy-registry'
    usage       'policy-registry <sub-command> [options]'
    summary     'policy-registry super command'
    description 'Pôlicy Registry commands'

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