inspec/lib/utils/modulator.rb
Miah Johnson 659b4b373a Remove # encoding: utf8 magic comments
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00

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