Skip to content
Snippets Groups Projects
Forked from asapo / asapo
1243 commits behind the upstream repository.
rest_client.go 140 B
package rest_client

import "net/http"

type HTTPClient interface {
	Do(req *http.Request) (*http.Response, error)
}

var Client HTTPClient