cordless/main_debug.go

13 lines
137 B
Go

//+build debug
package main
import (
"net/http"
_ "net/http/pprof"
)
func init() {
go http.ListenAndServe("localhost:8080", nil)
}