executor.go 104 B

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