11 lines
139 B
Go
Raw Normal View History

2017-04-15 22:50:42 +02:00
package debug
import _ "net/http/pprof"
import "net/http"
func init() {
go func() {
http.ListenAndServe("localhost:6060", nil)
}()
}