summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/table.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-05-21 14:22:21 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-05-21 14:22:21 -0600
commit2fd98cb040b617d2a018ae00a3a68b320de7dbc6 (patch)
tree91de4d369ec2a94c8f4fc3de4ba256945ad50297 /modules/caddyhttp/table.go
parent67d32e6779b8e4f67fb0902b06210596371ead7f (diff)
Module.New() does not need to return an error
Diffstat (limited to 'modules/caddyhttp/table.go')
-rw-r--r--modules/caddyhttp/table.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/caddyhttp/table.go b/modules/caddyhttp/table.go
index 8c3ebe0..fce4267 100644
--- a/modules/caddyhttp/table.go
+++ b/modules/caddyhttp/table.go
@@ -9,12 +9,12 @@ import (
func init() {
caddy2.RegisterModule(caddy2.Module{
Name: "http.middleware.table",
- New: func() (interface{}, error) { return new(tableMiddleware), nil },
+ New: func() interface{} { return new(tableMiddleware) },
})
caddy2.RegisterModule(caddy2.Module{
Name: "http.matchers.table",
- New: func() (interface{}, error) { return new(tableMatcher), nil },
+ New: func() interface{} { return new(tableMatcher) },
})
}