Files
openaccounting-server/vendor/github.com/modern-go/concurrent/executor.go
Patrick Nagurny ece803ec68 mailgun dep
2020-11-23 11:12:53 -05:00

7 lines
104 B
Go

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