diff --git a/doh-client/client.go b/doh-client/client.go index 91e5c9e..f738ce4 100644 --- a/doh-client/client.go +++ b/doh-client/client.go @@ -27,12 +27,6 @@ import ( "context" "crypto/tls" "fmt" - "github.com/m13253/dns-over-https/doh-client/config" - "github.com/m13253/dns-over-https/doh-client/selector" - jsondns "github.com/m13253/dns-over-https/json-dns" - "github.com/miekg/dns" - "golang.org/x/net/http2" - "golang.org/x/net/idna" "log" "math/rand" "net" @@ -43,6 +37,13 @@ import ( "strings" "sync" "time" + + "github.com/m13253/dns-over-https/doh-client/config" + "github.com/m13253/dns-over-https/doh-client/selector" + jsondns "github.com/m13253/dns-over-https/json-dns" + "github.com/miekg/dns" + "golang.org/x/net/http2" + "golang.org/x/net/idna" ) type Client struct { diff --git a/doh-client/google.go b/doh-client/google.go index 477c436..1e94612 100644 --- a/doh-client/google.go +++ b/doh-client/google.go @@ -35,7 +35,7 @@ import ( "strings" "github.com/m13253/dns-over-https/doh-client/selector" - "github.com/m13253/dns-over-https/json-dns" + jsondns "github.com/m13253/dns-over-https/json-dns" "github.com/miekg/dns" )