var net/http.DefaultServeMux

9 uses

	net/http (current package)
		h2_bundle.go#L3913: 	return DefaultServeMux
		server.go#L2269: var DefaultServeMux = &defaultServeMux
		server.go#L2507: func Handle(pattern string, handler Handler) { DefaultServeMux.Handle(pattern, handler) }
		server.go#L2513: 	DefaultServeMux.HandleFunc(pattern, handler)
		server.go#L2882: 		handler = DefaultServeMux

	go.opencensus.io/plugin/ochttp
		server.go#L89: 		handler = http.DefaultServeMux

	go.opencensus.io/zpages
		zpages.go#L56: 		mux = http.DefaultServeMux

	golang.org/x/net/http2
		server.go#L347: 	return http.DefaultServeMux

	golang.org/x/net/trace
		trace.go#L121: 	_, pat := http.DefaultServeMux.Handler(&http.Request{URL: &url.URL{Path: debugRequestsPath}})