| 106 | } |
| 107 | |
| 108 | type TestMiddleware struct { |
| 109 | Field string |
| 110 | next http.Handler |
| 111 | } |
| 112 | |
| 113 | func (*TestMiddleware) NewHandler(next http.Handler) (http.Handler, error) { |
| 114 | return &TestMiddleware{next: next}, nil |
nothing calls this directly
no outgoing calls
no test coverage detected