1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-09 01:10:44 +00:00
v2fly/main/distro/debug/debug.go
2020-10-11 19:22:46 +08:00

12 lines
109 B
Go

package debug
import (
"net/http"
)
func init() {
go func() {
http.ListenAndServe(":6060", nil)
}()
}