func net/http.FileServer

5 uses

	net/http (current package)
		fs.go#L838: func FileServer(root FileSystem) Handler {

	go.opencensus.io/zpages
		zpages.go#L60: 	mux.Handle(path.Join(pathPrefix, "public/"), http.FileServer(fs))

	golang.org/x/pkgsite/internal/frontend
		server.go#L134: 	handle("/third_party/", http.StripPrefix("/third_party", http.FileServer(http.Dir(s.thirdPartyPath))))
		server.go#L613: 	return http.StripPrefix("/static/", http.FileServer(http.Dir(staticPath)))

	golang.org/x/pkgsite/internal/worker
		server.go#L211: 	handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(s.staticPath.String()))))