v2ray-core/main/distro/debug/debug.go

11 lines
139 B
Go
Raw Normal View History

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