HTTPDoer is an interface for the one method of http.Client that is used by Pusher
| 62 | |
| 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 |
| 69 | // with its methods, and finally use the Add or Push method to push. |
no outgoing calls
no test coverage detected