aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/mux/context.go
blob: 665940a2682ec86e06822ab1fba0db9a7eb77a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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))
}