initial commit

This commit is contained in:
DeveloperDurp 2024-09-02 13:38:46 -05:00
commit 35fa88b45b
17 changed files with 630 additions and 0 deletions

16
cmd/middleware/main.go Normal file
View file

@ -0,0 +1,16 @@
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
}
}