Files
v2ray-core/main/distro/debug/debug.go
T
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)
}()
}