Sha256: f64ea8dbb116d17b32023ba7e2e19e1c82fa0fa555061db2f947db4f4fa88b08
Contents?: true
Size: 394 Bytes
Versions: 8
Compression:
Stored size: 394 Bytes
Contents
# frozen_string_literal: true require "thor" require_relative "./list" module NeetoDeploy class CLI module AutoscalingConfig class Commands < Thor desc "list", "List autoscaling configs of an app" option :app, type: :string, aliases: "-a", required: true, desc: "App slug" def list List.new(options:).run end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems