use plain pkg module

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
Jörn Friedrich Dreyer
2025-01-13 16:42:19 +01:00
committed by Florian Schade
parent 259cbc2e56
commit b07b5a1149
841 changed files with 1383 additions and 1366 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ package bleve
import (
bQuery "github.com/blevesearch/bleve/v2/search/query"
"github.com/opencloud-eu/opencloud/ocis-pkg/kql"
"github.com/opencloud-eu/opencloud/pkg/kql"
"github.com/opencloud-eu/opencloud/services/search/pkg/query"
)
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"github.com/blevesearch/bleve/v2"
bleveQuery "github.com/blevesearch/bleve/v2/search/query"
"github.com/opencloud-eu/opencloud/ocis-pkg/ast"
"github.com/opencloud-eu/opencloud/ocis-pkg/kql"
"github.com/opencloud-eu/opencloud/pkg/ast"
"github.com/opencloud-eu/opencloud/pkg/kql"
)
var _fields = map[string]string{
@@ -5,7 +5,7 @@ import (
"time"
"github.com/blevesearch/bleve/v2/search/query"
"github.com/opencloud-eu/opencloud/ocis-pkg/ast"
"github.com/opencloud-eu/opencloud/pkg/ast"
tAssert "github.com/stretchr/testify/assert"
)
+1 -1
View File
@@ -3,7 +3,7 @@ package query
import (
"fmt"
"github.com/opencloud-eu/opencloud/ocis-pkg/ast"
"github.com/opencloud-eu/opencloud/pkg/ast"
)
// StartsWithBinaryOperatorError records an error and the operation that caused it.
+1 -1
View File
@@ -1,7 +1,7 @@
// Package query provides functions to work with the different search query flavours.
package query
import "github.com/opencloud-eu/opencloud/ocis-pkg/ast"
import "github.com/opencloud-eu/opencloud/pkg/ast"
// Builder is the interface that wraps the basic Build method.
type Builder interface {