From 9cf648eaa3c2d158cc4aafda73738f7fe173ca84 Mon Sep 17 00:00:00 2001 From: r Date: Sat, 1 Feb 2020 11:31:44 +0000 Subject: Use vendored 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