Define internal module and add loaders

This commit is contained in:
Chris Roberts 2021-10-06 08:41:55 -07:00 committed by Paul Hinze
parent 6d682ab7eb
commit 87848eec67
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -0,0 +1,10 @@
module VagrantPlugins
module CommandServe
class Mappers
module Internal
autoload :Graph, Vagrant.source_root.join("plugins/commands/serve/mappers/internal/graph").to_s
autoload :Stack, Vagrant.source_root.join("plugins/commands/serve/mappers/internal/stack").to_s
end
end
end
end