mirror of
https://github.com/criyle/go-sandbox.git
synced 2025-11-04 14:49:53 +08:00
9 lines
192 B
Go
9 lines
192 B
Go
package runner
|
|
|
|
import "github.com/criyle/go-sandbox/types"
|
|
|
|
// Runner interface defines method to start running
|
|
type Runner interface {
|
|
Start(<-chan struct{}) (<-chan types.Result, error)
|
|
}
|