mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
659b4b373a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
11 lines
183 B
Ruby
11 lines
183 B
Ruby
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
module Modulator
|
|
def modules
|
|
@modules ||= {}
|
|
end
|
|
|
|
def add_module(name, handler)
|
|
modules[name] = handler
|
|
end
|
|
end
|