1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-30 16:24:37 -04:00
v2fly/main/distro/debug/debug.go
Darien Raymond d809973621
pprof debug
2017-04-15 22:50:42 +02:00

11 lines
139 B
Go

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