HTTP

http package provides tooling around http in Go, configured for production usage. The testify package provide somes
tools for configure correctly your unit tests with the http call(s).
Install
$> go get github.com/gofast-pkg/http@latest
Usage
// for the application usage
package main
import "github.com/gofast-pkg/http"
func main() {
client := http.NewClient()
// do something with your net/http client
}
// for the unit tests usage
package main
import "github.com/gofast-pkg/http/testify"
func main() {
client := testify.NewHTTPClient()
// do something with your net/http client
// read documentation for more details
}
Contributing
❕ Use issues for everything
Read more informations with the CONTRIBUTING_GUIDE
For all changes, please update the CHANGELOG.txt file by replacing the existant content.
Thank you 🙏 👍
Made with contrib.rocks.
Licence
MIT