Skip to content

Commit

Permalink
fixed links
Browse files Browse the repository at this point in the history
  • Loading branch information
mosajjal committed May 19, 2023
1 parent 80381e2 commit 3cc5772
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion acl/override.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"

"github.com/knadh/koanf"
dohserver "github.com/mosajjal/sniproxy/dohserver/v2"
dohserver "github.com/mosajjal/sniproxy/v2/dohserver"
"github.com/rs/zerolog"
"inet.af/tcpproxy"
)
Expand Down
2 changes: 1 addition & 1 deletion dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"github.com/mosajjal/dnsclient"
doqserver "github.com/mosajjal/doqd/pkg/server"
acl "github.com/mosajjal/sniproxy/acl/v2"
acl "github.com/mosajjal/sniproxy/v2/acl"
"github.com/rs/zerolog"

"github.com/miekg/dns"
Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ require (
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/mosajjal/sniproxy/v2 v2.0.0 // indirect
github.com/onsi/ginkgo/v2 v2.9.4 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/prometheus/client_model v0.4.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion httpproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

acl "github.com/mosajjal/sniproxy/acl/v2"
acl "github.com/mosajjal/sniproxy/v2/acl"
"github.com/rs/zerolog"
)

Expand Down
2 changes: 1 addition & 1 deletion https.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net"

acl "github.com/mosajjal/sniproxy/acl/v2"
acl "github.com/mosajjal/sniproxy/v2/acl"
"github.com/rs/zerolog"
"golang.org/x/net/proxy"
)
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ import (
"github.com/miekg/dns"
"golang.org/x/net/proxy"

acl "github.com/mosajjal/sniproxy/acl/v2"
doh "github.com/mosajjal/sniproxy/dohserver/v2"
acl "github.com/mosajjal/sniproxy/v2/acl"
doh "github.com/mosajjal/sniproxy/v2/dohserver"
)

type runConfig struct {
Expand Down

0 comments on commit 3cc5772

Please sign in to comment.