diff options
author | 2018-02-28 19:56:14 -0800 | |
---|---|---|
committer | 2018-02-28 19:56:14 -0800 | |
commit | 654b88d8c4dcf58717e7ee36e37200dabe9a307e (patch) | |
tree | c940066b3240c22b289e0adc98faf9bd4567ab39 /plugin/bind/bind.go | |
parent | 4f3dc207a46a29edd0f36b9242ce59a6c7e104d0 (diff) | |
download | coredns-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.go | 2 |
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, }) } |