summaryrefslogtreecommitdiff
path: root/lib/ats/cli/shiro/application.rb
blob: aa3aef81b04c64afff5a242243b5aab809697122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module ATS
  module CLI
    module Shiro
      class Application < Thor
        desc 'tokens SUBCOMMAND ...ARGS', 'interact with the Auth API'
        subcommand :tokens, ATS::CLI::Shiro::Tokens

        desc 'version SUBCOMMAND ...ARGS', 'interact with the Auth API'
        subcommand :version, ATS::CLI::Shiro::Versions
      end
    end
  end
end