From 0885597ac077f94b11b9fcbe020b25461dad67f4 Mon Sep 17 00:00:00 2001 From: Denozordec Date: Mon, 30 Mar 2026 11:50:33 +0700 Subject: [PATCH] Add net/url import to forward.go for URL handling - Introduced the net/url package import in forward.go to facilitate URL manipulation and enhance request processing in the proxy. - This change sets the groundwork for future improvements in URL handling and routing logic within the proxy implementation. --- internal/proxy/forward.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/proxy/forward.go b/internal/proxy/forward.go index b181e5c..2240650 100644 --- a/internal/proxy/forward.go +++ b/internal/proxy/forward.go @@ -5,6 +5,7 @@ import ( "io" "net/http" "net/textproto" + "net/url" "strings" )