GetProxyFunc.go 218 B

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