diff --git a/cmd/zurg/main.go b/cmd/zurg/main.go index 502ed51..3587742 100644 --- a/cmd/zurg/main.go +++ b/cmd/zurg/main.go @@ -16,8 +16,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() { @@ -68,10 +66,6 @@ func main() { downloadClient := zurghttp.NewHTTPClient(config.GetToken(), config.GetRetriesUntilFailed(), 0, config, log.Named("dlclient")) getfile := universal.NewGetFile(downloadClient) - go func() { - http.ListenAndServe("[::]:6060", nil) - }() - mux := http.NewServeMux() net.Router(mux, getfile, config, torrentMgr, log.Named("net"))