blob: 94c63a5bb32654c96917d81a25de92bde94d4c2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module ATS
module CLI
module ThreatGrid
class Whoami < Command
default_command :whoami
desc 'whoami', 'whoami'
def whoami
print_json api.whoami
end
end
end
end
end
|