1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-11 19:55:57 -05:00
Files
v2fly/main/distro/debug/debug.go
Darien Raymond bf64c449de listen on all ips
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)
}()
}