From b94160df725a52af53f113bf27de7a7b8723174c Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 5 Sep 2019 21:39:32 -0700 Subject: Update dependencies --- vendor/github.com/gorilla/mux/context.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 vendor/github.com/gorilla/mux/context.go (limited to 'vendor/github.com/gorilla/mux/context.go') diff --git a/vendor/github.com/gorilla/mux/context.go b/vendor/github.com/gorilla/mux/context.go new file mode 100644 index 0000000..665940a --- /dev/null +++ b/vendor/github.com/gorilla/mux/context.go @@ -0,0 +1,18 @@ +package mux + +import ( + "context" + "net/http" +) + +func contextGet(r *http.Request, key interface{}) interface{} { + return r.Context().Value(key) +} + +func contextSet(r *http.Request, key, val interface{}) *http.Request { + if val == nil { + return r + } + + return r.WithContext(context.WithValue(r.Context(), key, val)) +} -- cgit v1.2.3