mirror of
https://github.com/inspec/inspec
synced 2024-11-15 09:27:20 +00:00
6e4381f2d4
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
11 lines
147 B
Ruby
11 lines
147 B
Ruby
# encoding: utf-8
|
|
|
|
module Modulator
|
|
def modules
|
|
@modules ||= {}
|
|
end
|
|
|
|
def add_module(name, handler)
|
|
modules[name] = handler
|
|
end
|
|
end
|