1
0
mirror of https://github.com/gusaul/grpcox.git synced 2024-11-17 14:56:26 +00:00
grpcox/vendor/github.com/gorilla/mux/context.go
2019-03-25 10:47:41 +07:00

19 lines
315 B
Go

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))
}