Files
noscomptes-back/vendor/github.com/modern-go/concurrent/executor.go
2021-11-03 14:10:58 +01:00

8 lines
105 B
Go

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