github.com/v2pro/plz@v0.0.0-20221028024117-e5f9aec5b631/concurrent/executor.go (about) 1 package concurrent 2 3 import "context" 4 5 type Executor interface { 6 Go(handler func(ctx context.Context)) 7 }