summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/headers/headers.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/caddyhttp/headers/headers.go')
-rw-r--r--modules/caddyhttp/headers/headers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/headers/headers.go b/modules/caddyhttp/headers/headers.go
index b56bbf9..e94fb54 100644
--- a/modules/caddyhttp/headers/headers.go
+++ b/modules/caddyhttp/headers/headers.go
@@ -11,7 +11,7 @@ import (
func init() {
caddy2.RegisterModule(caddy2.Module{
Name: "http.middleware.headers",
- New: func() (interface{}, error) { return new(Headers), nil },
+ New: func() interface{} { return new(Headers) },
})
}