You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
382 B
Go
22 lines
382 B
Go
package context
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
const pathVars = "pathVars"
|
|
|
|
func Vars(r *http.Request) map[string]string {
|
|
vars, ok := r.Context().Value(pathVars).(map[string]string)
|
|
if ok {
|
|
return vars
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func WithPathVars(r *http.Request, params map[string]string) *http.Request {
|
|
return r.WithContext(context.WithValue(r.Context(), pathVars, params))
|
|
}
|