func(http.Handler) http.Handler
| 3 | import "net/http" |
| 4 | |
| 5 | type Middleware func(http.Handler) http.Handler |
| 6 | |
| 7 | func CreateStack(xs ...Middleware) Middleware { |
| 8 | return func(next http.Handler) http.Handler { |
nothing calls this directly
no outgoing calls
no test coverage detected