go-sandbox/runner/runner.go
2021-06-05 16:16:05 -07:00

11 lines
146 B
Go

package runner
import (
"context"
)
// Runner interface defines method to start running
type Runner interface {
Run(context.Context) Result
}