1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-18 03:04:16 -04:00
v2fly/main/distro/debug/debug.go

11 lines
139 B
Go
Raw Normal View History

2017-04-15 16:50:42 -04:00
package debug
import _ "net/http/pprof"
import "net/http"
func init() {
go func() {
http.ListenAndServe("localhost:6060", nil)
}()
}