sing/debug.go
2022-04-16 17:00:07 +08:00

12 lines
130 B
Go

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