1package ieproxy
2
3import (
4	"net/http"
5	"net/url"
6)
7
8// GetProxyFunc is a forwarder for the OS-Exclusive proxyMiddleman_os.go files
9func GetProxyFunc() func(*http.Request) (*url.URL, error) {
10	return proxyMiddleman()
11}
12