Sha256: 0f7875be18b5607fe359b635e72d10d6e588e61c79b6ea8be8fba4a6f82b556e
Contents?: true
Size: 671 Bytes
Versions: 22
Compression:
Stored size: 671 Bytes
Contents
require '3scale_toolbox/commands/import_command/import_csv' require '3scale_toolbox/commands/import_command/openapi' module ThreeScaleToolbox module Commands module ImportCommand include ThreeScaleToolbox::Command 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 add_subcommand(ImportCsvSubcommand) add_subcommand(OpenAPI::OpenAPISubcommand) end end end
Version data entries
22 entries across 22 versions & 1 rubygems