Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
315 B
18 lines
315 B
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)) |
|
}
|
|
|