aboutsummaryrefslogtreecommitdiff
path: root/plugin/bind/bind.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-02-28 19:56:14 -0800
committerGravatar GitHub <noreply@github.com> 2018-02-28 19:56:14 -0800
commit654b88d8c4dcf58717e7ee36e37200dabe9a307e (patch)
treec940066b3240c22b289e0adc98faf9bd4567ab39 /plugin/bind/bind.go
parent4f3dc207a46a29edd0f36b9242ce59a6c7e104d0 (diff)
downloadcoredns-654b88d8c4dcf58717e7ee36e37200dabe9a307e.tar.gz
coredns-654b88d8c4dcf58717e7ee36e37200dabe9a307e.tar.zst
coredns-654b88d8c4dcf58717e7ee36e37200dabe9a307e.zip
just use setup (#1574)
All these functions are namespaced by their package anyway; just use setup().
Diffstat (limited to 'plugin/bind/bind.go')
-rw-r--r--plugin/bind/bind.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/bind/bind.go b/plugin/bind/bind.go
index bd3c32b51..c4a1306db 100644
--- a/plugin/bind/bind.go
+++ b/plugin/bind/bind.go
@@ -6,6 +6,6 @@ import "github.com/mholt/caddy"
func init() {
caddy.RegisterPlugin("bind", caddy.Plugin{
ServerType: "dns",
- Action: setupBind,
+ Action: setup,
})
}