docs/vendor/github.com/modern-go/concurrent/executor.go

7 lines
104 B
Go

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