github.com/zhangdapeng520/zdpgo_json@v0.1.5/concurrent/executor.go (about) 1 package concurrent 2 3 import "context" 4 5 type Executor interface { 6 Go(handler func(ctx context.Context)) 7 }