mirror of
https://github.com/nadoo/glider.git
synced 2025-02-23 17:35:40 +08:00
13 lines
145 B
Go
13 lines
145 B
Go
//+build pprof
|
|
|
|
package main
|
|
|
|
import _ "net/http/pprof"
|
|
import "net/http"
|
|
|
|
func init() {
|
|
go func() {
|
|
http.ListenAndServe(":6060", nil)
|
|
}()
|
|
}
|