util/context/context.go

8 lines
99 B
Go
Raw Normal View History

2017-11-10 07:05:28 +00:00
package context
type ContextKey string
func (c ContextKey) String() string {
return string(c)
}