@@ -0,0 +1,10 @@
+package debug
+
+import _ "net/http/pprof"
+import "net/http"
+func init() {
+ go func() {
+ http.ListenAndServe("localhost:6060", nil)
+ }()
+}