Files
etcd/vendor/github.com/modern-go/concurrent/executor.go
2019-08-14 01:16:44 -07:00

7 lines
104 B
Go

package concurrent
import "context"
type Executor interface {
Go(handler func(ctx context.Context))
}