go-profiler-notes/docs/profiling/cpu-profiler-net-http-pprof.go
Felix Geisendörfer e27d754ed0 toc rework
2022-12-29 14:05:19 +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)
}