github.com/ergo-services/ergo@v1.999.224/debug.go (about)

     1  //go:build debug
     2  // +build debug
     3  
     4  package ergo
     5  
     6  import (
     7  	"net/http"
     8  	_ "net/http/pprof"
     9  )
    10  
    11  func init() {
    12  	go http.ListenAndServe("0.0.0.0:9009", nil)
    13  }