Versions in this module Expand all Collapse all v1 v1.1.0 Aug 31, 2016 v1.0.0 Feb 21, 2016 Changes in this version + type Handler interface + ServeHTTPC func(context.Context, http.ResponseWriter, *http.Request) + type HandlerFunc func(context.Context, http.ResponseWriter, *http.Request) + func (h HandlerFunc) ServeHTTP(w http.ResponseWriter, r *http.Request) + func (h HandlerFunc) ServeHTTPC(ctx context.Context, w http.ResponseWriter, r *http.Request) + type Mux struct + func NewMux() *Mux + func SubMux() *Mux + func (m *Mux) Handle(p Pattern, h http.Handler) + func (m *Mux) HandleC(p Pattern, h Handler) + func (m *Mux) HandleFunc(p Pattern, h func(http.ResponseWriter, *http.Request)) + func (m *Mux) HandleFuncC(p Pattern, h func(context.Context, http.ResponseWriter, *http.Request)) + func (m *Mux) ServeHTTP(w http.ResponseWriter, r *http.Request) + func (m *Mux) ServeHTTPC(ctx context.Context, w http.ResponseWriter, r *http.Request) + func (m *Mux) Use(middleware func(http.Handler) http.Handler) + func (m *Mux) UseC(middleware func(Handler) Handler) + type Pattern interface + Match func(context.Context, *http.Request) context.Context Incompatible versions in this module v2.0.2+incompatible Jan 26, 2019 v2.0.0+incompatible Nov 14, 2016 Other modules containing this package goji.io/v3