1
0
Fork 0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-01-11 13:13:32 +02:00
Xray-core/main/distro/debug/debug.go
2020-11-25 19:01:53 +08:00

11 lines
109 B
Go

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