gitlab.com/SiaPrime/SiaPrime@v1.4.1/profile/server.go (about)

     1  // +build profile
     2  
     3  package profile
     4  
     5  import (
     6  	"net/http"
     7  	_ "net/http/pprof"
     8  )
     9  
    10  func init() {
    11  	go http.ListenAndServe("localhost:10501", nil)
    12  }