Sha256: f516998a61672c028899647f014cdd41b78146c39a4480fc60a5a6936b09173c

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

# frozen_string_literal: true

require "thor"

require_relative "./list"

module NeetoDeploy
  class CLI
    module Certificates
      class Commands < Thor
        desc "list", "List certificates 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

1 entries across 1 versions & 1 rubygems

Version Path
neetodeploy-1.1.13 lib/neeto_deploy/cli/certificates/commands.rb