Closed alexandear closed 1 year ago
This PR refactors code and replaces golang.org/x/net with standard net/http.
golang.org/x/net
net/http
graphql uses only one Post method from golang.org/x/net. It's trivial and easy to replace with Do and NewRequestWithContext methods from net/http.
graphql
Post
Do
NewRequestWithContext
This PR refactors code and replaces
golang.org/x/net
with standardnet/http
.graphql
uses only onePost
method fromgolang.org/x/net
. It's trivial and easy to replace withDo
andNewRequestWithContext
methods fromnet/http
.