mirror of
https://github.com/FalconOpsLLC/goexec
synced 2026-06-06 15:44:27 +00:00
15 lines
237 B
Go
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
|
|
}
|