This commit is contained in:
deepzz0
2016-09-29 02:59:27 +08:00
parent 60af472ca7
commit ddf508825c
121 changed files with 711894 additions and 0 deletions

19
main.go Normal file
View File

@@ -0,0 +1,19 @@
// Package main provides ...
package main
import (
"net/http"
_ "net/http/pprof"
"github.com/EiBlog/utils/logd"
)
func main() {
// set log print level
logd.SetLevel(logd.Ldebug)
// pprof
go func() {
http.ListenAndServe(":6060", nil)
}()
Run()
}