github.com/prebid/prebid-server/v2@v2.18.0/analytics/clients/http.go (about) 1 package clients 2 3 import ( 4 "net/http" 5 ) 6 7 var defaultHttpInstance = http.DefaultClient 8 9 func GetDefaultHttpInstance() *http.Client { 10 // TODO 2020-06-22 @see https://github.com/prebid/prebid-server/pull/1331#discussion_r436110097 11 return defaultHttpInstance 12 }