Add types for communicator information

This commit is contained in:
Chris Roberts 2022-02-07 14:20:37 -08:00 committed by Paul Hinze
parent 8d8e9ae8ea
commit 025808ba27
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0
3 changed files with 18 additions and 0 deletions

View File

@ -8,6 +8,8 @@ module VagrantPlugins
autoload :Direct, Vagrant.source_root.join("plugins/commands/serve/type/direct").to_s
autoload :Duration, Vagrant.source_root.join("plugins/commands/serve/type/duration").to_s
autoload :NamedArgument, Vagrant.source_root.join("plugins/commands/serve/type/named_argument").to_s
autoload :SSHInfo, Vagrant.source_root.join("plugins/commands/serve/type/ssh_info").to_s
autoload :WinrmInfo, Vagrant.source_root.join("plugins/commands/serve/type/winrm_info").to_s
attr_accessor :value

View File

@ -0,0 +1,8 @@
module VagrantPlugins
module CommandServe
class Type
class SSHInfo < Type
end
end
end
end

View File

@ -0,0 +1,8 @@
module VagrantPlugins
module CommandServe
class Type
class WinrmInfo < Type
end
end
end
end