Create a types namespace and add direct type

This commit is contained in:
Chris Roberts 2021-10-29 08:59:52 -07:00 committed by Paul Hinze
parent 22e34e87e9
commit 757b97b882
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -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