1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-02-23 01:00:44 +00:00
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)
}()
}