Files
FalconOpsLLC-goexec/pkg/goexec/exec.go
T
2025-04-16 12:11:58 -05:00

15 lines
237 B
Go

package goexec
import "context"
type ExecutionProvider interface {
Execute(ctx context.Context, in *ExecutionInput) (err error)
}
type Executor struct{}
type CleanExecutionProvider interface {
ExecutionProvider
CleanProvider
}