remove dependencies

This commit is contained in:
ston1th 2024-10-13 03:06:35 +02:00
commit 1656b91e3b
107 changed files with 567 additions and 7772 deletions

View file

@ -11,7 +11,6 @@ import (
"net"
"net/http"
"net/http/httputil"
"net/url"
neturl "net/url"
"os"
"strings"
@ -38,7 +37,7 @@ type ClientOption func(*Client)
func WithEndpoint(endpoint string) ClientOption {
return func(client *Client) {
u, err := url.Parse(endpoint)
u, err := neturl.Parse(endpoint)
if err != nil {
return
}