Questions tagged [go-http]

This tag is for questions related to Go's HTTP package

Go's net/http package provides HTTP client and server implementations.

121 questions
-4
votes
1 answer

Go http client setup for multiple endpoints?

I reuse the http client connection to make external calls to a single endpoint. An excerpt of the program is shown below: var AppCon MyApp func New(user, pass string, platformURL *url.URL, restContext string) (*MyApp, error) { if AppCon ==…
kaizenCoder
  • 2,211
  • 6
  • 33
  • 64
1 2 3
8
9