| 7 | ) |
| 8 | |
| 9 | type testMiddleware struct { |
| 10 | timesCalled uint |
| 11 | } |
| 12 | |
| 13 | func (tm *testMiddleware) Middleware(h http.Handler) http.Handler { |
| 14 | return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
nothing calls this directly
no outgoing calls
no test coverage detected