aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/mux/context_native.go
diff options
context:
space:
mode:
authorRaul Benencia <46945030+raul-te@users.noreply.github.com>2023-01-04 16:16:10 -0800
committerGitHub <noreply@github.com>2023-01-04 16:16:10 -0800
commit5278665a4dab4d90c7aac56aa76ce2c24705da8c (patch)
tree070fa7e79bb7d031797ed3c60d6f6745ee4b8689 /vendor/github.com/gorilla/mux/context_native.go
parent1c79728984af1b0b065ce5879581f41fa9f03da3 (diff)
build: update dependencies
Diffstat (limited to 'vendor/github.com/gorilla/mux/context_native.go')
-rw-r--r--vendor/github.com/gorilla/mux/context_native.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/github.com/gorilla/mux/context_native.go b/vendor/github.com/gorilla/mux/context_native.go
deleted file mode 100644
index 209cbea..0000000
--- a/vendor/github.com/gorilla/mux/context_native.go
+++ /dev/null
@@ -1,24 +0,0 @@
-// +build go1.7
-
-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))
-}
-
-func contextClear(r *http.Request) {
- return
-}
nihil fit ex nihilo