mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
11 lines
130 B
Go
11 lines
130 B
Go
package debug
|
|
|
|
import _ "net/http/pprof"
|
|
import "net/http"
|
|
|
|
func init() {
|
|
go func() {
|
|
http.ListenAndServe(":6060", nil)
|
|
}()
|
|
}
|