Gyuho Lee 830bba337f vendor: regenerate, upgrade gRPC to 1.23.0
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
2019-08-14 01:16:44 -07:00

7 lines
104 B
Go

package concurrent
import "context"
type Executor interface {
Go(handler func(ctx context.Context))
}