mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-05 07:08:41 +00:00
15 lines
222 B
Go
15 lines
222 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"github.com/drone/drone/queue"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func Queue() gin.HandlerFunc {
|
||
|
queue_ := queue.New()
|
||
|
return func(c *gin.Context) {
|
||
|
queue.ToContext(c, queue_)
|
||
|
c.Next()
|
||
|
}
|
||
|
}
|