1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-11-10 02:10:00 +00:00
password/vendor/github.com/gorilla/mux/context_native.go
Knut Ahlers c61820a9d2
Vendor dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-09-22 15:28:56 +02:00

24 lines
380 B
Go

// +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
}