mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-02 17:10:18 +01:00
cb6e5cb0c7
* use dep for vendoring * lets encrypt * moved web to transfer.sh-web repo * single command install * added first tests
26 lines
380 B
Go
26 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)
|
|
}
|