aboutsummaryrefslogtreecommitdiff
path: root/plugin/reverse/reverse.go
diff options
context:
space:
mode:
authorGravatar John Belamaric <jbelamaric@infoblox.com> 2018-01-07 14:51:32 -0500
committerGravatar GitHub <noreply@github.com> 2018-01-07 14:51:32 -0500
commitc59f5f6e86e1d041a9aa7b324b90582b3a4b277a (patch)
treec8091f7101125f066d5bc59c20dbf6b4b192311d /plugin/reverse/reverse.go
parentc6febe6250361eee580dbb8a601a444f23ed7ac2 (diff)
downloadcoredns-c59f5f6e86e1d041a9aa7b324b90582b3a4b277a.tar.gz
coredns-c59f5f6e86e1d041a9aa7b324b90582b3a4b277a.tar.zst
coredns-c59f5f6e86e1d041a9aa7b324b90582b3a4b277a.zip
Simplify plugin/pkg/fall (#1358)
* Simplify plugin/pkg/fall * Remove unused import * Fix fall_test * Get fall coverage to 100% just because * gofmt. sigh.
Diffstat (limited to 'plugin/reverse/reverse.go')
-rw-r--r--plugin/reverse/reverse.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/reverse/reverse.go b/plugin/reverse/reverse.go
index 912d998b8..8b9e403d5 100644
--- a/plugin/reverse/reverse.go
+++ b/plugin/reverse/reverse.go
@@ -17,7 +17,7 @@ type Reverse struct {
Next plugin.Handler
Networks networks
- Fall *fall.F
+ Fall fall.F
}
// ServeDNS implements the plugin.Handler interface.