mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-22 20:00:44 -05:00
8 lines
202 B
Go
8 lines
202 B
Go
package terraform
|
|
|
|
// GraphNodeSubPath says that a node is part of a graph with a
|
|
// different path, and the context should be adjusted accordingly.
|
|
type GraphNodeSubPath interface {
|
|
Path() []string
|
|
}
|