tart/benchmark/internal/executor/executor.go

11 lines
142 B
Go

package executor
import (
"context"
)
type Executor interface {
Run(ctx context.Context, command string) ([]byte, error)
Close() error
}