mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-11 05:00:05 +00:00
12 lines
218 B
Go
12 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()
|
||
|
}
|