a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
26 lignes
380 o
Go
26 lignes
380 o
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)
|
|
}
|