blob: c3d631950e69b6328e4219aa27a271f700b64e1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# frozen_string_literal: true
module LicenseFinder
module SharedHelpers
def shell
::License::Management.shell
end
class Cmd
def self.run(command)
::License::Management.shell.execute(command)
end
end
end
end
|