diff options
author | 2021-07-15 10:10:16 +0200 | |
---|---|---|
committer | 2021-07-15 10:10:16 +0200 | |
commit | 50d888f3d7cfbe554a35f88e21c6009aebe65a4c (patch) | |
tree | 24c3a406f943655ba9822ad387b1d567604dac6d /plugin/header/setup.go | |
parent | 00128bda4e2fa56ec4bf66e321bf3e00263d1188 (diff) | |
download | coredns-50d888f3d7cfbe554a35f88e21c6009aebe65a4c.tar.gz coredns-50d888f3d7cfbe554a35f88e21c6009aebe65a4c.tar.zst coredns-50d888f3d7cfbe554a35f88e21c6009aebe65a4c.zip |
plugin/header: run go gen and small doc updates (#4754)
* plugin/header: run go gen and small doc updates
Run go gen to enable the new plugin, this should fix the CI failures.
Small tweaks to the docs.
Signed-off-by: Miek Gieben <miek@miek.nl>
* another typo
Signed-off-by: Miek Gieben <miek@miek.nl>
* gofmt
Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to '')
-rw-r--r-- | plugin/header/setup.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/header/setup.go b/plugin/header/setup.go index b0e67206a..dbd4f6ed5 100644 --- a/plugin/header/setup.go +++ b/plugin/header/setup.go @@ -3,9 +3,9 @@ package header import ( "fmt" + "github.com/coredns/caddy" "github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/plugin" - "github.com/coredns/caddy" ) func init() { plugin.Register("header", setup) } |