aboutsummaryrefslogtreecommitdiff
path: root/roomserver/state
diff options
context:
space:
mode:
authorQuentin Gliech <quenting@element.io>2024-10-17 17:33:45 +0200
committerQuentin Gliech <quenting@element.io>2024-10-17 17:33:45 +0200
commit6e6c3de0a6d93cd9e91234ce48e7968eb77e25e9 (patch)
tree5bae9388f8c4ba44d6b7e3176a40f1a3f4da9481 /roomserver/state
parent6d327dc73cbab650f19735eb9724c3b060eaaac3 (diff)
Rename the go package
github.com/matrix-org/dendrite to github.com/element-hq/dendrite
Diffstat (limited to 'roomserver/state')
-rw-r--r--roomserver/state/state.go6
-rw-r--r--roomserver/state/state_test.go2
2 files changed, 4 insertions, 4 deletions
diff --git a/roomserver/state/state.go b/roomserver/state/state.go
index 6f236868..1d3cba27 100644
--- a/roomserver/state/state.go
+++ b/roomserver/state/state.go
@@ -20,9 +20,9 @@ import (
"github.com/matrix-org/util"
"github.com/prometheus/client_golang/prometheus"
- "github.com/matrix-org/dendrite/internal"
- "github.com/matrix-org/dendrite/roomserver/api"
- "github.com/matrix-org/dendrite/roomserver/types"
+ "github.com/element-hq/dendrite/internal"
+ "github.com/element-hq/dendrite/roomserver/api"
+ "github.com/element-hq/dendrite/roomserver/types"
)
type StateResolutionStorage interface {
diff --git a/roomserver/state/state_test.go b/roomserver/state/state_test.go
index 27197576..774bb4c2 100644
--- a/roomserver/state/state_test.go
+++ b/roomserver/state/state_test.go
@@ -11,7 +11,7 @@ package state
import (
"testing"
- "github.com/matrix-org/dendrite/roomserver/types"
+ "github.com/element-hq/dendrite/roomserver/types"
)
func TestFindDuplicateStateKeys(t *testing.T) {