2023-07-07 23:05:17 +00:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import "net/http"
|
|
|
|
|
|
|
|
// ProcessMiddleware is a wrapper function for the http.HandleFunc function
|
2023-07-21 16:59:01 +00:00
|
|
|
// that takes the function you want to execute (f) and the middleware you want
|
|
|
|
// to execute (m) this should be used when processing multiple groups of middleware at a time
|
2023-07-07 23:05:17 +00:00
|
|
|
func ProcessMiddleware(f func(w http.ResponseWriter, r *http.Request), m []func()) func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
for _, middleware := range m {
|
|
|
|
middleware()
|
|
|
|
}
|
|
|
|
|
|
|
|
return f
|
|
|
|
}
|