Xray-core/main/distro/debug/debug.go
2020-11-25 19:01:53 +08:00

12 lines
109 B
Go

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