1
0
Fork 0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-01-12 05:33:33 +02:00
Xray-core/main/distro/debug/debug.go

12 lines
109 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package debug
import (
"net/http"
)
func init() {
go func() {
http.ListenAndServe(":6060", nil)
}()
}