Bump Gorilla Mux to v1.8.0.

Signed-off-by: olegburov <oleg.burov@outlook.com>
This commit is contained in:
olegburov 2020-08-27 11:09:06 -07:00
parent 2800ab0224
commit 545596ae2c
14 changed files with 299 additions and 124 deletions

View file

@ -15,5 +15,5 @@ import "net/http"
// can be set by making a route that captures the required variables,
// starting a server and sending the request to that server.
func SetURLVars(r *http.Request, val map[string]string) *http.Request {
return setVars(r, val)
return requestWithVars(r, val)
}