9b599c8162
The azure sdk for go is maintenance-only for storage, see https://github.com/Azure/azure-sdk-for-go/tree/master/storage\#azure-storage-sdk-for-go-preview Migrate to new azure-storage-blob-go SDK Minor test improvements Fix #9661
14 lines
237 B
Go
14 lines
237 B
Go
// +build !windows
|
|
|
|
package ieproxy
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
func proxyMiddleman() func(req *http.Request) (i *url.URL, e error) {
|
|
// Fallthrough to ProxyFromEnvironment on all other OSes.
|
|
return http.ProxyFromEnvironment
|
|
}
|