Versions in this module Expand all Collapse all v1 v1.3.9 Apr 3, 2021 Changes in this version + var ErrKeyNodFound = errors.New("key not found!") + type Context struct + func NewContext(ctx context.Context) *Context + func (c *Context) Close() error + func (c *Context) Count() int + func (c *Context) Deadline() (deadline time.Time, ok bool) + func (c *Context) Done() <-chan struct{} + func (c *Context) Err() error + func (c *Context) Get(key string) (interface{}, error) + func (c *Context) GetBoolean(key string) (bool, error) + func (c *Context) GetString(key string) (string, error) + func (c *Context) MustGet(key string) (value interface{}) + func (c *Context) MustGetBoolean(key string) bool + func (c *Context) MustGetString(key string) string + func (c *Context) Set(key string, value interface{}) error + func (c *Context) Value(key interface{}) interface{} + func (c *Context) With(handlers ...Provider) *Context + type Provider interface + Close func(ctx *Context) error + Register func(ctx *Context) error