add mediary a middleware for http.Client (#3140)

Co-authored-by: Tal Gendler <tal.gendler@here.com>
This commit is contained in:
Tal 2020-07-03 13:38:44 +03:00 committed by GitHub
parent f4879e6f79
commit 364f16b86e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2107,6 +2107,7 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis
* [go-wrap](https://github.com/go-on/wrap) - Small middlewares package for net/http. * [go-wrap](https://github.com/go-on/wrap) - Small middlewares package for net/http.
* [gores](https://github.com/alioygur/gores) - Go package that handles HTML, JSON, XML and etc. responses. Useful for RESTful APIs. * [gores](https://github.com/alioygur/gores) - Go package that handles HTML, JSON, XML and etc. responses. Useful for RESTful APIs.
* [interpose](https://github.com/carbocation/interpose) - Minimalist net/http middleware for golang. * [interpose](https://github.com/carbocation/interpose) - Minimalist net/http middleware for golang.
* [mediary](https://github.com/HereMobilityDevelopers/mediary) - add interceptors to `http.Client` to allow dumping/shaping/tracing/... of requests/responses.
* [muxchain](https://github.com/stephens2424/muxchain) - Lightweight middleware for net/http. * [muxchain](https://github.com/stephens2424/muxchain) - Lightweight middleware for net/http.
* [negroni](https://github.com/urfave/negroni) - Idiomatic HTTP middleware for Golang. * [negroni](https://github.com/urfave/negroni) - Idiomatic HTTP middleware for Golang.
* [render](https://github.com/unrolled/render) - Go package for easily rendering JSON, XML, and HTML template responses. * [render](https://github.com/unrolled/render) - Go package for easily rendering JSON, XML, and HTML template responses.