mirror of https://github.com/Hilbis/Hilbish
15 lines
172 B
Go
15 lines
172 B
Go
|
// +build pprof
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
_ "net/http/pprof"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
go func() {
|
||
|
http.ListenAndServe("localhost:8080", nil)
|
||
|
}()
|
||
|
}
|