aboutsummaryrefslogtreecommitdiff
path: root/plugin/proxy/lookup.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-04-22 08:34:35 +0100
committerGravatar GitHub <noreply@github.com> 2018-04-22 08:34:35 +0100
commit0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4 (patch)
tree80ead193f34227b1fc8f010f83a727edd89bf9f3 /plugin/proxy/lookup.go
parent69a956f052a603eca3d400abf8a44a9b44f83184 (diff)
downloadcoredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.tar.gz
coredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.tar.zst
coredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.zip
all: fix plugin import ordering (#1717)
Got a bit messed up with stb lib "context" usage.
Diffstat (limited to 'plugin/proxy/lookup.go')
-rw-r--r--plugin/proxy/lookup.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugin/proxy/lookup.go b/plugin/proxy/lookup.go
index bd4952bdd..44bee4b0e 100644
--- a/plugin/proxy/lookup.go
+++ b/plugin/proxy/lookup.go
@@ -3,6 +3,7 @@ package proxy
// functions other plugin might want to use to do lookup in the same style as the proxy.
import (
+ "context"
"fmt"
"net"
"sync/atomic"
@@ -11,8 +12,6 @@ import (
"github.com/coredns/coredns/plugin/pkg/healthcheck"
"github.com/coredns/coredns/request"
- "context"
-
"github.com/miekg/dns"
)