mirror of https://github.com/v2ray/v2ray-core
11 lines
139 B
Go
11 lines
139 B
Go
![]() |
package debug
|
||
|
|
||
|
import _ "net/http/pprof"
|
||
|
import "net/http"
|
||
|
|
||
|
func init() {
|
||
|
go func() {
|
||
|
http.ListenAndServe("localhost:6060", nil)
|
||
|
}()
|
||
|
}
|