From 279cbff9e457634f5f1618269286457486d69cf7 Mon Sep 17 00:00:00 2001 From: diamondburned Date: Thu, 5 Nov 2020 20:05:51 -0800 Subject: [PATCH] removed profiling code --- profile.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 profile.go diff --git a/profile.go b/profile.go deleted file mode 100644 index 1450c3c..0000000 --- a/profile.go +++ /dev/null @@ -1,15 +0,0 @@ -// Code generated by goprofiler. DO NOT EDIT. - -package main - -import ( - "net/http" - _ "net/http/pprof" -) - -func init() { - go func() { - println("Serving HTTP at 127.0.0.1:48574 for profiler at /debug/pprof") - panic(http.ListenAndServe("127.0.0.1:48574", nil)) - }() -}