blob: 5ad77ce0dc39d719f6196ca9535c68ff25d1dc7a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | //go:build !debug && !debugenv
// +build !debug,!debugenv
package debug
import "net/http"
// ServePprof will start an HTTP server serving /debug/pprof only if debug enabled.
func ServePprof(addr string) error {
	return nil
}
// WithPprof will add /debug/pprof handling (provided by "net/http/pprof") only if debug enabled.
func WithPprof(handler http.Handler) http.Handler {
	return handler
}
 |