mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-04 22:32:49 -04:00
Define internal module and add loaders
This commit is contained in:
parent
6d682ab7eb
commit
87848eec67
1 changed files with 10 additions and 0 deletions
10
plugins/commands/serve/mappers/internal.rb
Normal file
10
plugins/commands/serve/mappers/internal.rb
Normal 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
|
||||
Loading…
Reference in a new issue