github.com/v2fly/v2ray-core/v5@v5.16.2-0.20240507031116-8191faa6e095/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  }