2022-04-25 12:26:30 -05:00

16 lines
283 B
Ruby

module VagrantPlugins
module CommandServe
class Mappers
module Internal
class Graph
# Represents a root vertex within the graph
class Vertex
class Root < Vertex
end
end
end
end
end
end
end