diff --git a/ctx/ctx.go b/ctx/ctx.go index b9bd058..0a2b57d 100644 --- a/ctx/ctx.go +++ b/ctx/ctx.go @@ -5,6 +5,12 @@ import ( "sync" ) +type CtxKey string + +func (k CtxKey) String() string { + return string(k) +} + func NewCtx(parent Ctx) Ctx { c := &defaultCtx{ parent: parent,