11 lines
130 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() {
2017-04-17 14:06:02 +02:00
http.ListenAndServe(":6060", nil)
2017-04-15 22:50:42 +02:00
}()
}