go-profiler-notes/docs/code/cpu-profiler-net-http-pprof.go
Felix Geisendörfer 6342fc3259 updates
2022-12-29 14:05:20 +01:00

12 lines
137 B
Go

//go:build ignore
package main
import (
"net/http"
_ "net/http/pprof"
)
func main() {
http.ListenAndServe("localhost:1234", nil)
}