github.com/xtls/xray-core@v1.8.12-0.20240518155711-3168d27b0bdb/main/distro/debug/debug.go (about)

     1  package debug
     2  
     3  import (
     4  	"net/http"
     5  )
     6  
     7  func init() {
     8  	go func() {
     9  		http.ListenAndServe(":6060", nil)
    10  	}()
    11  }