aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/mux/context_gorilla.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_gorilla.go
parent1c79728984af1b0b065ce5879581f41fa9f03da3 (diff)
build: update dependencies
Diffstat (limited to 'vendor/github.com/gorilla/mux/context_gorilla.go')
-rw-r--r--vendor/github.com/gorilla/mux/context_gorilla.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/gorilla/mux/context_gorilla.go b/vendor/github.com/gorilla/mux/context_gorilla.go
deleted file mode 100644
index d7adaa8..0000000
--- a/vendor/github.com/gorilla/mux/context_gorilla.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// +build !go1.7
-
-package mux
-
-import (
- "net/http"
-
- "github.com/gorilla/context"
-)
-
-func contextGet(r *http.Request, key interface{}) interface{} {
- return context.Get(r, key)
-}
-
-func contextSet(r *http.Request, key, val interface{}) *http.Request {
- if val == nil {
- return r
- }
-
- context.Set(r, key, val)
- return r
-}
-
-func contextClear(r *http.Request) {
- context.Clear(r)
-}
nihil fit ex nihilo