oh-my-posh/src/environment/httpclient.go
2022-02-03 10:44:18 +01:00

16 lines
255 B
Go

package environment
import (
"net/http"
)
// Inspired by: https://www.thegreatcodeadventure.com/mocking-http-requests-in-golang/
type httpClient interface {
Do(req *http.Request) (*http.Response, error)
}
var (
client httpClient = &http.Client{}
)