diff --git a/plugins/commands/serve/types/direct.rb b/plugins/commands/serve/types/direct.rb new file mode 100644 index 000000000..df1b51e87 --- /dev/null +++ b/plugins/commands/serve/types/direct.rb @@ -0,0 +1,13 @@ +module VagrantPlugins + module CommandServe + module Types + class Direct + attr_accessor :args + + def initialize(arguments:) + @args = arguments + end + end + end + end +end