type net/http.ServeMux

12 uses

	net/http (current package)
		server.go#L2253: type ServeMux struct {
		server.go#L2266: func NewServeMux() *ServeMux { return new(ServeMux) }
		server.go#L2271: var defaultServeMux ServeMux
		server.go#L2310: func (mux *ServeMux) match(path string) (h Handler, pattern string) {
		server.go#L2331: func (mux *ServeMux) redirectToPathSlash(host, path string, u *url.URL) (*url.URL, bool) {
		server.go#L2346: func (mux *ServeMux) shouldRedirectRLocked(host, path string) bool {
		server.go#L2383: func (mux *ServeMux) Handler(r *Request) (h Handler, pattern string) {
		server.go#L2420: func (mux *ServeMux) handler(host, path string) (h Handler, pattern string) {
		server.go#L2439: func (mux *ServeMux) ServeHTTP(w ResponseWriter, r *Request) {
		server.go#L2453: func (mux *ServeMux) Handle(pattern string, handler Handler) {
		server.go#L2497: func (mux *ServeMux) HandleFunc(pattern string, handler func(ResponseWriter, *Request)) {