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

11 lines
130 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() {
2017-04-17 12:06:02 +00:00
http.ListenAndServe(":6060", nil)
2017-04-15 20:50:42 +00:00
}()
}