mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
13 lines
384 B
Go
13 lines
384 B
Go
package middleware
|
|
|
|
// contextKey is a value for use with context.WithValue. It's used as
|
|
// a pointer so it fits in an interface{} without allocation. This technique
|
|
// for defining context keys was copied from Go 1.7's new use of context in net/http.
|
|
type contextKey struct {
|
|
name string
|
|
}
|
|
|
|
func (k *contextKey) String() string {
|
|
return "chi/middleware context value " + k.name
|
|
}
|