aboutsummaryrefslogtreecommitdiff
path: root/eduserver/eduserver.go
diff options
context:
space:
mode:
Diffstat (limited to 'eduserver/eduserver.go')
-rw-r--r--eduserver/eduserver.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/eduserver/eduserver.go b/eduserver/eduserver.go
index c14be3f6..aa65ff23 100644
--- a/eduserver/eduserver.go
+++ b/eduserver/eduserver.go
@@ -23,7 +23,7 @@ import (
"github.com/matrix-org/dendrite/eduserver/cache"
"github.com/matrix-org/dendrite/eduserver/input"
"github.com/matrix-org/dendrite/eduserver/inthttp"
- "github.com/matrix-org/dendrite/internal/basecomponent"
+ "github.com/matrix-org/dendrite/internal/setup"
)
// AddInternalRoutes registers HTTP handlers for the internal API. Invokes functions
@@ -35,7 +35,7 @@ func AddInternalRoutes(internalMux *mux.Router, inputAPI api.EDUServerInputAPI)
// NewInternalAPI returns a concerete implementation of the internal API. Callers
// can call functions directly on the returned API or via an HTTP interface using AddInternalRoutes.
func NewInternalAPI(
- base *basecomponent.BaseDendrite,
+ base *setup.BaseDendrite,
eduCache *cache.EDUCache,
deviceDB devices.Database,
) api.EDUServerInputAPI {