mirror of
https://gitlab.durp.info/durfy/modules/durpify.git
synced 2026-05-07 16:10:28 -05:00
17 lines
277 B
Go
17 lines
277 B
Go
|
|
package middleware
|
||
|
|
|
||
|
|
import "net/http"
|
||
|
|
|
||
|
|
type Middleware func(http.Handler) http.Handler
|
||
|
|
|
||
|
|
func CreateStack(xs ...Middleware) Middleware {
|
||
|
|
return func(next http.Handler) http.Handler {
|
||
|
|
for i := len(xs) - 1; i >= 0; i-- {
|
||
|
|
x := xs[i]
|
||
|
|
next = x(next)
|
||
|
|
}
|
||
|
|
|
||
|
|
return next
|
||
|
|
}
|
||
|
|
}
|