Xray-core/main/distro/debug/debug.go

12 lines
109 B
Go
Raw Normal View History

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