File: proxy_middleman.go

package info (click to toggle)
golang-github-mattn-go-ieproxy 0.0~git20191113.7c0f686-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 156 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
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()
}