1package concurrent
2
3import "context"
4
5type Executor interface {
6	Go(handler func(ctx context.Context))
7}