(context.Context, Request)
| 73 | // Handler is like http.Handle, but specifically for Prometheus query_range calls. |
| 74 | type Handler interface { |
| 75 | Do(context.Context, Request) (Response, error) |
| 76 | } |
| 77 | |
| 78 | // Middleware is a higher order Handler. |
no outgoing calls