aboutsummaryrefslogtreecommitdiff
path: root/federationsender/internal/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'federationsender/internal/api.go')
-rw-r--r--federationsender/internal/api.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/federationsender/internal/api.go b/federationsender/internal/api.go
index 0dca32fc..9a9880ce 100644
--- a/federationsender/internal/api.go
+++ b/federationsender/internal/api.go
@@ -2,8 +2,8 @@ package internal
import (
"github.com/matrix-org/dendrite/federationsender/queue"
+ "github.com/matrix-org/dendrite/federationsender/statistics"
"github.com/matrix-org/dendrite/federationsender/storage"
- "github.com/matrix-org/dendrite/federationsender/types"
"github.com/matrix-org/dendrite/internal/config"
"github.com/matrix-org/dendrite/roomserver/api"
"github.com/matrix-org/gomatrixserverlib"
@@ -13,7 +13,7 @@ import (
type FederationSenderInternalAPI struct {
db storage.Database
cfg *config.Dendrite
- statistics *types.Statistics
+ statistics *statistics.Statistics
rsAPI api.RoomserverInternalAPI
federation *gomatrixserverlib.FederationClient
keyRing *gomatrixserverlib.KeyRing
@@ -25,7 +25,7 @@ func NewFederationSenderInternalAPI(
rsAPI api.RoomserverInternalAPI,
federation *gomatrixserverlib.FederationClient,
keyRing *gomatrixserverlib.KeyRing,
- statistics *types.Statistics,
+ statistics *statistics.Statistics,
queues *queue.OutgoingQueues,
) *FederationSenderInternalAPI {
return &FederationSenderInternalAPI{