mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06: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
|
|
}
|