mirror of
https://github.com/inspec/inspec
synced 2025-02-18 23:18:53 +00:00
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
|