From 757b97b8824b273ce16daaa9fafbd1d9af25913f Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 29 Oct 2021 08:59:52 -0700 Subject: [PATCH] Create a types namespace and add direct type --- plugins/commands/serve/types/direct.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plugins/commands/serve/types/direct.rb 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