blob: 4bca3da31dc47329406e2fc5d01d8999f146108d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module ATS
module CLI
module Shiro
class Tokens < Command
desc 'introspect <TOKEN>', 'introspection endpoint'
def introspect(token)
print_json api.tokens.introspect(token)
end
end
end
end
end
|