aboutsummaryrefslogtreecommitdiff
path: root/internal/fulltext
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 /internal/fulltext
parent6d327dc73cbab650f19735eb9724c3b060eaaac3 (diff)
Rename the go package
github.com/matrix-org/dendrite to github.com/element-hq/dendrite
Diffstat (limited to 'internal/fulltext')
-rw-r--r--internal/fulltext/bleve.go4
-rw-r--r--internal/fulltext/bleve_test.go6
-rw-r--r--internal/fulltext/bleve_wasm.go2
3 files changed, 6 insertions, 6 deletions
diff --git a/internal/fulltext/bleve.go b/internal/fulltext/bleve.go
index 98329429..fddf3a9a 100644
--- a/internal/fulltext/bleve.go
+++ b/internal/fulltext/bleve.go
@@ -14,7 +14,7 @@ import (
"strings"
"github.com/blevesearch/bleve/v2"
- "github.com/matrix-org/dendrite/setup/process"
+ "github.com/element-hq/dendrite/setup/process"
"github.com/matrix-org/gomatrixserverlib/spec"
// side effect imports to allow all possible languages
@@ -41,7 +41,7 @@ import (
_ "github.com/blevesearch/bleve/v2/analysis/lang/tr"
"github.com/blevesearch/bleve/v2/mapping"
- "github.com/matrix-org/dendrite/setup/config"
+ "github.com/element-hq/dendrite/setup/config"
)
// Search contains all existing bleve.Index
diff --git a/internal/fulltext/bleve_test.go b/internal/fulltext/bleve_test.go
index e32a257e..b9be15a4 100644
--- a/internal/fulltext/bleve_test.go
+++ b/internal/fulltext/bleve_test.go
@@ -10,12 +10,12 @@ import (
"reflect"
"testing"
- "github.com/matrix-org/dendrite/setup/process"
+ "github.com/element-hq/dendrite/setup/process"
"github.com/matrix-org/gomatrixserverlib/spec"
"github.com/matrix-org/util"
- "github.com/matrix-org/dendrite/internal/fulltext"
- "github.com/matrix-org/dendrite/setup/config"
+ "github.com/element-hq/dendrite/internal/fulltext"
+ "github.com/element-hq/dendrite/setup/config"
)
func mustOpenIndex(t *testing.T, tempDir string) (*fulltext.Search, *process.ProcessContext) {
diff --git a/internal/fulltext/bleve_wasm.go b/internal/fulltext/bleve_wasm.go
index 782524c0..2eadf126 100644
--- a/internal/fulltext/bleve_wasm.go
+++ b/internal/fulltext/bleve_wasm.go
@@ -9,7 +9,7 @@ package fulltext
import (
"time"
- "github.com/matrix-org/dendrite/setup/config"
+ "github.com/element-hq/dendrite/setup/config"
)
type Search struct{}