Categorygithub.com/gofast-pkg/http
repositorypackage
0.1.0
Repository: https://github.com/gofast-pkg/http.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

HTTP

Static Badge Build Go Reference codecov Release Go Report Card codebeat badge FOSSA Status License

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

 :grey_exclamation:  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  :pray:  :+1: 

Made with contrib.rocks.

Licence

MIT