blob: 8c3a6fe15e0cbdc45843ad397fdea9ff3d4b6071 [file] [log] [blame]
package terraform
import "github.com/hashicorp/terraform/internal/tfdiags"
// GraphNodeExecutable is the interface that graph nodes must implement to
// enable execution.
type GraphNodeExecutable interface {
Execute(EvalContext, walkOperation) tfdiags.Diagnostics
}