Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/server/internal/http/middleware/middleware.go

13 lines
356 B
Go
Raw Normal View History

2020-01-13 21:05:38 +13:00
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 ctxKey struct {
2021-04-05 08:37:33 +12:00
name string
2020-01-13 21:05:38 +13:00
}
func (k *ctxKey) String() string {
2021-04-05 08:37:33 +12:00
return "neko/ctx/" + k.name
2020-01-13 21:05:38 +13:00
}