Skip to content

Commit

Permalink
feat: rename module to github.com/douglaslim/gorql
Browse files Browse the repository at this point in the history
  • Loading branch information
tauslim committed Feb 29, 2024
1 parent e89e866 commit 3644dd9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module gorql
module github.com/douglaslim/gorql

go 1.21
2 changes: 1 addition & 1 deletion pkg/driver/base.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package driver

import "gorql"
import "github.com/douglaslim/gorql"

const (
AndOp = "AND"
Expand Down
4 changes: 2 additions & 2 deletions pkg/driver/mongo/mongo.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package mongo

import (
"fmt"
"gorql"
"gorql/pkg/driver"
"github.com/douglaslim/gorql"
"github.com/douglaslim/gorql/pkg/driver"
"strconv"
"strings"
"time"
Expand Down
2 changes: 1 addition & 1 deletion pkg/driver/mongo/mongo_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package mongo

import (
"gorql"
"github.com/douglaslim/gorql"
"strings"
"testing"
"time"
Expand Down
4 changes: 2 additions & 2 deletions pkg/driver/sql/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package sql

import (
"fmt"
"gorql"
"gorql/pkg/driver"
"github.com/douglaslim/gorql"
"github.com/douglaslim/gorql/pkg/driver"
"net/url"
"strconv"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion pkg/driver/sql/sql_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package sql

import (
"gorql"
"github.com/douglaslim/gorql"
"strings"
"testing"
)
Expand Down

0 comments on commit 3644dd9

Please sign in to comment.