mirror of
https://github.com/grafana/grafana.git
synced 2024-12-26 17:01:09 -06:00
8 lines
128 B
Go
8 lines
128 B
Go
|
package updatechecker
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
type httpClient interface {
|
||
|
Do(req *http.Request) (resp *http.Response, err error)
|
||
|
}
|