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)
}()
}