1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 22:04:30 -04:00
v2fly/main/distro/debug/debug.go

12 lines
109 B
Go
Raw Normal View History

2017-04-15 16:50:42 -04:00
package debug
import (
"net/http"
)
2017-04-15 16:50:42 -04:00
func init() {
go func() {
2017-04-17 08:06:02 -04:00
http.ListenAndServe(":6060", nil)
2017-04-15 16:50:42 -04:00
}()
}