rclone/vendor/github.com/mattn/go-ieproxy/GetProxyFunc.go

12 lines
218 B
Go
Raw Normal View History

2019-08-26 19:00:17 +02:00
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()
}