You've already forked openaccounting-server
mirror of
https://github.com/openaccounting/oa-server.git
synced 2025-12-09 09:00:42 +13:00
7 lines
104 B
Go
7 lines
104 B
Go
package concurrent
|
|
|
|
import "context"
|
|
|
|
type Executor interface {
|
|
Go(handler func(ctx context.Context))
|
|
} |