opentofu/terraform/transform.go
2015-02-19 12:07:52 -08:00

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
}