mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
477eeef60c
This release drops support for Go < 1.7, and removes the gorilla/context dependency (which was needed for older Go versions). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
18 lines
315 B
Go
18 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))
|
|
}
|