harness-drone/router/middleware/store.go

18 lines
370 B
Go
Raw Normal View History

2016-05-02 19:21:25 +00:00
package middleware
import (
"github.com/drone/drone/store"
2017-03-16 10:14:02 +00:00
"github.com/urfave/cli"
2016-05-02 19:21:25 +00:00
"github.com/gin-gonic/gin"
)
// Store is a middleware function that initializes the Datastore and attaches to
// the context of every http.Request.
2017-05-03 21:25:33 +00:00
func Store(cli *cli.Context, v store.Store) gin.HandlerFunc {
2016-05-02 19:21:25 +00:00
return func(c *gin.Context) {
store.ToContext(c, v)
c.Next()
}
}