SandpointsGitHook/vendor/github.com/mattn/go-ieproxy/proxy_middleman.go
2021-03-20 23:21:23 +01:00

11 lines
218 B
Go

package ieproxy
import (
"net/http"
"net/url"
)
// GetProxyFunc is a forwarder for the OS-Exclusive proxyMiddleman_os.go files
func GetProxyFunc() func(*http.Request) (*url.URL, error) {
return proxyMiddleman()
}