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`
This commit is contained in:
Yong Tang
2017-02-21 22:51:47 -08:00
committed by Miek Gieben
parent 5982337226
commit 81af74aad0
141 changed files with 366 additions and 366 deletions

View File

@@ -51,7 +51,7 @@ proxy FROM TO... {
* `protocol` specifies what protocol to use to speak to an upstream, `dns` (the default) is plain
old DNS, and `https_google` uses `https://dns.google.com` and speaks a JSON DNS dialect. Note when
using this **TO** will be ignored. The `grpc` option will talk to a server that has implemented
the [DnsService](https://github.com/miekg/coredns/middleware/proxy/pb/dns.proto).
the [DnsService](https://github.com/coredns/coredns/middleware/proxy/pb/dns.proto).
An out-of-tree middleware that implements the server side of this can be found at
[here](https://github.com/infobloxopen/coredns-grpc).

View File

@@ -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"
)

View File

@@ -3,7 +3,7 @@ package proxy
import (
"context"
"github.com/miekg/coredns/request"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
)

View File

@@ -13,8 +13,8 @@ import (
"sync/atomic"
"time"
"github.com/miekg/coredns/middleware/pkg/debug"
"github.com/miekg/coredns/request"
"github.com/coredns/coredns/middleware/pkg/debug"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
)

View File

@@ -5,8 +5,8 @@ import (
"crypto/tls"
"log"
"github.com/miekg/coredns/middleware/proxy/pb"
"github.com/miekg/coredns/request"
"github.com/coredns/coredns/middleware/proxy/pb"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
"google.golang.org/grpc"

View File

@@ -7,7 +7,7 @@ import (
"sync/atomic"
"time"
"github.com/miekg/coredns/request"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
)

View File

@@ -3,7 +3,7 @@ package proxy
import (
"sync"
"github.com/miekg/coredns/middleware"
"github.com/coredns/coredns/middleware"
"github.com/prometheus/client_golang/prometheus"
)

View File

@@ -6,8 +6,8 @@ import (
"sync/atomic"
"time"
"github.com/miekg/coredns/middleware"
"github.com/miekg/coredns/request"
"github.com/coredns/coredns/middleware"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
ot "github.com/opentracing/opentracing-go"

View File

@@ -1,8 +1,8 @@
package proxy
import (
"github.com/miekg/coredns/core/dnsserver"
"github.com/miekg/coredns/middleware"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/middleware"
"github.com/mholt/caddy"
)

View File

@@ -11,9 +11,9 @@ import (
"sync/atomic"
"time"
"github.com/miekg/coredns/middleware"
"github.com/miekg/coredns/middleware/pkg/dnsutil"
"github.com/miekg/coredns/middleware/pkg/tls"
"github.com/coredns/coredns/middleware"
"github.com/coredns/coredns/middleware/pkg/dnsutil"
"github.com/coredns/coredns/middleware/pkg/tls"
"github.com/mholt/caddy/caddyfile"
"github.com/miekg/dns"

View File

@@ -8,7 +8,7 @@ import (
"testing"
"time"
"github.com/miekg/coredns/middleware/test"
"github.com/coredns/coredns/middleware/test"
"github.com/mholt/caddy"
)