github.com/criyle/go-sandbox@v0.10.3/runner/runner.go (about) 1 package runner 2 3 import ( 4 "context" 5 ) 6 7 // Runner interface defines method to start running 8 type Runner interface { 9 Run(context.Context) Result 10 }