Documentation ¶ Index ¶ type Context func NewContext() Context type Map Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Context ¶ type Context interface { // Get retrieves data from the context. Get(key string) interface{} // Set saves data in the context. Set(key string, val interface{}) } func NewContext ¶ func NewContext() Context type Map ¶ type Map map[string]interface{} Map defines a generic map of type `map[string]interface{}`. Source Files ¶ View all Source files context.go new.go Click to show internal directories. Click to hide internal directories.