go-profiler-notes/docs/profiling/builtin-profilers/cpu-profiler-net-http-pprof.go
Felix Geisendörfer edb8883543 wip
2022-12-29 14:04:52 +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)
}