module ThreeScaleToolbox::Commands::CopyCommand
Public Class Methods
command()
click to toggle source
# File lib/3scale_toolbox/commands/copy_command.rb, line 7 def self.command Cri::Command.define do name 'copy' usage 'copy <sub-command> [options]' summary 'copy super command' description 'Copy 3scale entities between tenants' run do |_opts, _args, cmd| puts cmd.help end end end