|
|
|
|
|
by jen20
1470 days ago
|
|
Yes - `DefaultClient` in `net/http` is what the various package level methods operate on. This is constitutionally bad as global state that dependencies can mutate at will during init (or any other time), hence go-cleanhttp [1]. [1]: https://github.com/hashicorp/go-cleanhttp |
|