For 3rd parties building binary packages, and for build consistency in general, it is very helpful to have the same set of dependencies at any time the product is built. See [tools/godep](https://github.com/tools/godep) for further details.
27 lines
380 B
Go
27 lines
380 B
Go
// +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)
|
|
}
|