1package terraform
2
3import "github.com/hashicorp/terraform/internal/tfdiags"
4
5// GraphNodeExecutable is the interface that graph nodes must implement to
6// enable execution.
7type GraphNodeExecutable interface {
8	Execute(EvalContext, walkOperation) tfdiags.Diagnostics
9}
10