Global is the middleware for all routes
(h http.Handler)
| 63 | |
| 64 | // Global is the middleware for all routes |
| 65 | func Global(h http.Handler) http.Handler { |
| 66 | ret := h |
| 67 | |
| 68 | ret = Logging(ret) |
| 69 | ret = methodOverride(ret) |
| 70 | |
| 71 | return ret |
| 72 | } |
nothing calls this directly
no test coverage detected