mirror of
https://github.com/criyle/go-sandbox.git
synced 2025-09-26 23:19:11 +08:00
11 lines
146 B
Go
11 lines
146 B
Go
package runner
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Runner interface defines method to start running
|
|
type Runner interface {
|
|
Run(context.Context) Result
|
|
}
|