@@ -1,3 +1,3 @@
-module github.com/recipeer/go/arango
+module github.com/annybs/go/arango
go 1.21
@@ -24,7 +24,7 @@ var (
"LIKE": "LIKE",
"NOT LIKE": "NOT LIKE",
- // Compatible with Filter.Operator in github.com/recipeer/go/qs
+ // Compatible with Filter.Operator in github.com/annybs/go/qs
"eq": "==",
"neq": "!=",
"gt": ">",
@@ -107,7 +107,7 @@ func ParseNumberOperator(op string) (string, error) {
}
// ParseOperator returns the valid AQL operator for an arbitrary operator string.
-// This supports different inputs, such as Filter.Operator in github.com/recipeer/go/qs
+// This supports different inputs, such as Filter.Operator in github.com/annybs/go/qs
//
// If the input operator cannot be mapped to AQL, this function returns ErrInvalidOperator.
func ParseOperator(op string) (string, error) {
@@ -15,7 +15,7 @@ var (
"ASC": "ASC",
"DESC": "DESC",
- // Compatible with Sort.Direction in github.com/recipeer/go/qs
+ // Compatible with Sort.Direction in github.com/annybs/go/qs
// Although lowercase keywords can be used in AQL, uppercase is favoured for stylistic consistency.
"asc": "ASC",
)
// ParseSortDirection returns the valid AQL operator for an arbitrary direction string.
-// This supports different inputs, such as Sort.Direction in github.com/recipeer/go/qs
+// This supports different inputs, such as Sort.Direction in github.com/annybs/go/qs
// If the input operator cannot be mapped to AQL, this function returns ErrInvalidSortDirection.
func ParseSortDirection(op string) (string, error) {