go-sandbox/runner/runner.go
criyle 4f2257a187 Remove types pkg & update documents
- move types pkg into runner
- add documentations for cgroup & container
- add benchmakr for cgroup & container
2020-03-02 03:14:13 -05:00

11 lines
153 B
Go

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