summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/table.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/caddyhttp/table.go')
-rw-r--r--modules/caddyhttp/table.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/caddyhttp/table.go b/modules/caddyhttp/table.go
index 62077a8..b06e902 100644
--- a/modules/caddyhttp/table.go
+++ b/modules/caddyhttp/table.go
@@ -3,16 +3,16 @@ package caddyhttp
import (
"net/http"
- "github.com/caddyserver/caddy2"
+ "github.com/caddyserver/caddy"
)
func init() {
- caddy2.RegisterModule(caddy2.Module{
+ caddy.RegisterModule(caddy.Module{
Name: "http.middleware.table",
New: func() interface{} { return new(tableMiddleware) },
})
- caddy2.RegisterModule(caddy2.Module{
+ caddy.RegisterModule(caddy.Module{
Name: "http.matchers.table",
New: func() interface{} { return new(tableMatcher) },
})