mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-11 22:00:21 -04: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
|
|
}
|