mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
7 lines
104 B
Go
7 lines
104 B
Go
package concurrent
|
|
|
|
import "context"
|
|
|
|
type Executor interface {
|
|
Go(handler func(ctx context.Context))
|
|
} |