github.com/qjfoidnh/BaiduPCS-Go@v0.0.0-20231011165705-caa18a3765f3/pcsverbose/pcsdebug/pprof.go (about)

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