diff --git a/cmd/zurg/main.go b/cmd/zurg/main.go index 2303bc6..d132d50 100644 --- a/cmd/zurg/main.go +++ b/cmd/zurg/main.go @@ -15,8 +15,6 @@ import ( zurghttp "github.com/debridmediamanager.com/zurg/pkg/http" "github.com/debridmediamanager.com/zurg/pkg/logutil" "github.com/debridmediamanager.com/zurg/pkg/realdebrid" - - _ "net/http/pprof" ) func main() { @@ -57,10 +55,6 @@ func main() { downloadClient := zurghttp.NewHTTPClient("", 5, 0, config, log.Named("dlclient")) getfile := universal.NewGetFile(downloadClient) - go func() { - http.ListenAndServe("localhost:6060", nil) - }() - mux := http.NewServeMux() net.Router(mux, getfile, config, torrentMgr, log.Named("net"))