common/proxy_forwarder_windows.go (9 lines of code) (raw):
//go:build windows
// +build windows
package common
import (
"github.com/mattn/go-ieproxy"
"net/http"
"net/url"
)
func GetProxyFunc() func(*http.Request) (*url.URL, error) {
return ieproxy.GetProxyFunc()
}