summaryrefslogtreecommitdiff
path: root/lib/tfa/usage_command.rb
blob: 3dd5abd589e2f8f35341c033aa93003313559492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module TFA
  class UsageCommand
    def initialize(storage)
    end

    def run(arguments)
      <<-MESSAGE
Try:
  - tfa add develoment <secret>
  - tfa show development
  - tfa totp development
      MESSAGE
    end
  end
end