Files
SingboxForPanel/cmd/sing-box/debug.go
2022-07-30 14:50:33 +08:00

13 lines
137 B
Go

//go:build debug
package main
import (
"net/http"
_ "net/http/pprof"
)
func init() {
go http.ListenAndServe("0.0.0.0:8964", nil)
}