mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
ff27841b50
This is a purely mechanical refactor PR: I de-exported a few more functions which did not need to be exported in the first place, and fixed a few outdated log outputs.
10 lines
260 B
Go
10 lines
260 B
Go
package terraform
|
|
|
|
import "github.com/hashicorp/terraform/tfdiags"
|
|
|
|
// GraphNodeExecutable is the interface that graph nodes must implement to
|
|
// enable execution.
|
|
type GraphNodeExecutable interface {
|
|
Execute(EvalContext, walkOperation) tfdiags.Diagnostics
|
|
}
|