From 5efa83633fcfb7eab3dae575b0c1242985c9ac87 Mon Sep 17 00:00:00 2001 From: bagas Date: Wed, 3 Dec 2025 21:20:40 +0700 Subject: [PATCH] refactor: remove profiling --- main.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/main.go b/main.go index 9953588..04de238 100644 --- a/main.go +++ b/main.go @@ -2,8 +2,6 @@ package main import ( "log" - "net/http" - _ "net/http/pprof" "os" "tunnel_pls/server" "tunnel_pls/utils" @@ -12,9 +10,6 @@ import ( ) func main() { - go func() { - log.Println(http.ListenAndServe("localhost:6060", nil)) - }() sshConfig := &ssh.ServerConfig{ NoClientAuth: true, ServerVersion: "SSH-2.0-TunnlPls-1.0",