mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-23 08:00:51 -05:00
12 lines
323 B
Go
12 lines
323 B
Go
package controlexecute
|
|
|
|
import "github.com/turbot/steampipe/pkg/dashboard/dashboardtypes"
|
|
|
|
// ExecutionTreeNode is implemented by all control execution tree nodes
|
|
type ExecutionTreeNode interface {
|
|
IsExecutionTreeNode()
|
|
GetChildren() []ExecutionTreeNode
|
|
GetName() string
|
|
AsTreeNode() *dashboardtypes.SnapshotTreeNode
|
|
}
|