aboutsummaryrefslogtreecommitdiff
path: root/keyserver/routing/routing.go
diff options
context:
space:
mode:
Diffstat (limited to 'keyserver/routing/routing.go')
-rw-r--r--keyserver/routing/routing.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyserver/routing/routing.go b/keyserver/routing/routing.go
index d79ce6d4..3ca68ade 100644
--- a/keyserver/routing/routing.go
+++ b/keyserver/routing/routing.go
@@ -22,8 +22,8 @@ import (
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
"github.com/matrix-org/dendrite/clientapi/auth/storage/accounts"
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
- "github.com/matrix-org/dendrite/common"
- "github.com/matrix-org/dendrite/common/config"
+ "github.com/matrix-org/dendrite/internal"
+ "github.com/matrix-org/dendrite/internal/config"
"github.com/matrix-org/util"
)
@@ -49,7 +49,7 @@ func Setup(
}
r0mux.Handle("/keys/query",
- common.MakeAuthAPI("queryKeys", authData, func(req *http.Request, device *authtypes.Device) util.JSONResponse {
+ internal.MakeAuthAPI("queryKeys", authData, func(req *http.Request, device *authtypes.Device) util.JSONResponse {
return QueryKeys(req)
}),
).Methods(http.MethodPost, http.MethodOptions)