mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 18:32:30 +01:00
7 lines
No EOL
104 B
Go
7 lines
No EOL
104 B
Go
package concurrent
|
|
|
|
import "context"
|
|
|
|
type Executor interface {
|
|
Go(handler func(ctx context.Context))
|
|
} |