Fix module name

I'm not sure why an extra "dnscrypt-proxy" was added to the module name when the rest of the URL was updated, but it resulted in the following:
```
$ go test -mod=vendor ./...
ok  	github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/dnscrypt-proxy	0.173s
ok  	github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/test	0.006s
$ go list ./...
github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/dnscrypt-proxy
github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/test
```
Not critical, but it looks wrong that these packages will not be found at those URLs.
This commit is contained in:
William Elwood 2019-12-15 02:21:35 +00:00 committed by Frank Denis
parent 8e5a5b734f
commit 7d08ba2536
1 changed files with 1 additions and 1 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy
module github.com/DNSCrypt/dnscrypt-proxy
go 1.13