(*http.Request)
| 63 | // HTTPDoer is an interface for the one method of http.Client that is used by Pusher |
| 64 | type HTTPDoer interface { |
| 65 | Do(*http.Request) (*http.Response, error) |
| 66 | } |
| 67 | |
| 68 | // Pusher manages a push to the Pushgateway. Use New to create one, configure it |
no outgoing calls