diff options
author | 2017-02-21 22:51:47 -0800 | |
---|---|---|
committer | 2017-02-22 06:51:47 +0000 | |
commit | 81af74aad0d51961a7622fcb410d510ff83f9dd6 (patch) | |
tree | 259f4a656c77c3f01fcf8bf8e67b11eea13f561e /middleware/proxy/dns.go | |
parent | 59823372267c7eb74fc42b50924d810edf3e5cbe (diff) | |
download | coredns-81af74aad0d51961a7622fcb410d510ff83f9dd6.tar.gz coredns-81af74aad0d51961a7622fcb410d510ff83f9dd6.tar.zst coredns-81af74aad0d51961a7622fcb410d510ff83f9dd6.zip |
Fix import path `github.com/miekg/coredns` -> `github.com/coredns/coredns` (#547)
This fix fixes import path from
`github.com/miekg/coredns`
->
`github.com/coredns/coredns`
Diffstat (limited to 'middleware/proxy/dns.go')
-rw-r--r-- | middleware/proxy/dns.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/middleware/proxy/dns.go b/middleware/proxy/dns.go index 45d8e3e2e..3e212c7c3 100644 --- a/middleware/proxy/dns.go +++ b/middleware/proxy/dns.go @@ -5,8 +5,8 @@ import ( "net" "time" - "github.com/miekg/coredns/middleware/pkg/singleflight" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/pkg/singleflight" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) |