mirror of
https://github.com/gin-gonic/gin.git
synced 2025-12-16 15:09:11 +08:00
7 lines
104 B
Go
7 lines
104 B
Go
package concurrent
|
|
|
|
import "context"
|
|
|
|
type Executor interface {
|
|
Go(handler func(ctx context.Context))
|
|
} |