mirror of
https://github.com/DataDog/go-profiler-notes.git
synced 2026-06-21 00:46:51 +08:00
12 lines
137 B
Go
12 lines
137 B
Go
//go:build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"net/http"
|
|
_ "net/http/pprof"
|
|
)
|
|
|
|
func main() {
|
|
http.ListenAndServe("localhost:1234", nil)
|
|
}
|