v2ray-core/main/distro/debug/debug.go

11 lines
130 B
Go

package debug
import _ "net/http/pprof"
import "net/http"
func init() {
go func() {
http.ListenAndServe(":6060", nil)
}()
}