mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
8 lines
222 B
Go
8 lines
222 B
Go
package terraform
|
|
|
|
// GraphTransformer is the interface that transformers implement. This
|
|
// interface is only for transforms that need entire graph visibility.
|
|
type GraphTransformer interface {
|
|
Transform(*Graph) error
|
|
}
|