add local plugin (#4262)

* add local plugin

See: #4260

Signed-off-by: Miek Gieben <miek@miek.nl>

* stickler bot

Signed-off-by: Miek Gieben <miek@miek.nl>

* See Also

Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben
2020-11-05 15:02:07 +01:00
committed by GitHub
parent b091eff139
commit 7bbcf6920f
9 changed files with 364 additions and 0 deletions

20
plugin/local/setup.go Normal file
View File

@@ -0,0 +1,20 @@
package local
import (
"github.com/coredns/caddy"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
)
func init() { plugin.Register("local", setup) }
func setup(c *caddy.Controller) error {
l := Local{}
dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
l.Next = next
return l
})
return nil
}