github.com/Uhtred009/v2ray-core-1@v4.31.2+incompatible/main/distro/debug/debug.go (about)

     1  package debug
     2  
     3  import _ "net/http/pprof"
     4  import "net/http"
     5  
     6  func init() {
     7  	go func() {
     8  		http.ListenAndServe(":6060", nil)
     9  	}()
    10  }