19 lines
352 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
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