https://github.com/rtuin/go-plus
A collection of HTTP helper functions to use with the Go language.
https://github.com/rtuin/go-plus
Last synced: over 1 year ago
JSON representation
A collection of HTTP helper functions to use with the Go language.
- Host: GitHub
- URL: https://github.com/rtuin/go-plus
- Owner: rtuin
- License: mit
- Created: 2016-09-20T08:41:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-20T14:18:27.000Z (almost 10 years ago)
- Last Synced: 2025-01-21T02:42:45.681Z (over 1 year ago)
- Language: Go
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-plus
Provides a collection of HTTP helper functions to use with the Go language.
## Usage
```go
import (
"net/http"
"github.com/rtuin/go-plus"
)
func main() {
response, _ := http.Get("http://www.google.com/")
// IsHTTPServerError example
fmt.Printf("IsHTTPServerError: %v", IsHTTPServerError(response)) //
}
```
## Credits
- [Richard Tuin](https://github.com/rtuin)
- [All Contributors](https://github.com/rtuin/go-plus/contributors)
## License
The MIT License (MIT). Please see the [license file](https://github.com/rtuin/go-plus/blob/master/LICENSE) for more information.