ezprof/hook/ezprof.go

11 lines
143 B
Go

package ezprof
import "net/http"
import _ "net/http/pprof"
func init () {
go func () {
http.ListenAndServe("localhost:8888", nil)
} ()
}