mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 18:10:16 +00:00
20 lines
502 B
Go
20 lines
502 B
Go
package middleware
|
|
|
|
import "net/http"
|
|
|
|
// Middleware function definition
|
|
type Middleware func(inner http.Handler) http.Handler
|
|
|
|
// Middlewares list
|
|
type Middlewares []Middleware
|
|
|
|
// UseBefore insert a middleware at the beginning of the middleware chain
|
|
func (ms Middlewares) UseBefore(m Middleware) Middlewares {
|
|
return append([]Middleware{m}, ms...)
|
|
}
|
|
|
|
// UseAfter add a middleware at the end of the middleware chain
|
|
func (ms Middlewares) UseAfter(m Middleware) Middlewares {
|
|
return append(ms, m)
|
|
}
|