diff options
author | 2018-02-14 21:29:00 +0100 | |
---|---|---|
committer | 2018-02-14 21:29:00 +0100 | |
commit | 8b035fa938f94ed9bff3f44ee14daba34b13eafb (patch) | |
tree | d844f10b30201ad65e76c2571d98b5dd68875b25 /plugin | |
parent | 71ee323651ffed5d09aa22ea8d17eefbac2f6d08 (diff) | |
download | coredns-8b035fa938f94ed9bff3f44ee14daba34b13eafb.tar.gz coredns-8b035fa938f94ed9bff3f44ee14daba34b13eafb.tar.zst coredns-8b035fa938f94ed9bff3f44ee14daba34b13eafb.zip |
Fix imports (#1528)
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/proxy/grpc_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/proxy/grpc_test.go b/plugin/proxy/grpc_test.go index 801b6fd2f..0dd4e70fd 100644 --- a/plugin/proxy/grpc_test.go +++ b/plugin/proxy/grpc_test.go @@ -1,14 +1,14 @@ package proxy import ( + "fmt" "testing" "github.com/coredns/coredns/plugin/pkg/healthcheck" - - "fmt" "github.com/coredns/coredns/plugin/pkg/tls" "github.com/coredns/coredns/plugin/test" "github.com/coredns/coredns/request" + "github.com/miekg/dns" "golang.org/x/net/context" "google.golang.org/grpc/grpclog" |