Add net/url import to forward.go for URL handling
Publish telemt-api gateway Docker image / test (push) Successful in 25s
Publish telemt-api gateway Docker image / build-and-push (push) Successful in 2m0s

- 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.
This commit is contained in:
Denozordec
2026-03-30 11:50:33 +07:00
parent 374b4e0d71
commit 0885597ac0
+1
View File
@@ -5,6 +5,7 @@ import (
"io"
"net/http"
"net/textproto"
"net/url"
"strings"
)