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
2017-04-17 14:06:02 +02:00

11 lines
130 B
Go

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