mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 09:14:09 +01:00
25 lines
380 B
Go
25 lines
380 B
Go
|
// +build go1.7
|
||
|
|
||
|
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))
|
||
|
}
|
||
|
|
||
|
func contextClear(r *http.Request) {
|
||
|
return
|
||
|
}
|