Skip to content

Commit

Permalink
chore: update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
afumu committed Dec 9, 2022
1 parent 05f0869 commit b009a73
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion example/base/delete_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package base

import (
"fmt"
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion example/base/gormplus.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package base

import (
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"gorm.io/driver/mysql"
"gorm.io/gorm"
"gorm.io/gorm/logger"
Expand Down
2 changes: 1 addition & 1 deletion example/base/insert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package base
import (
"encoding/json"
"fmt"
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion example/base/select_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package base
import (
"encoding/json"
"errors"
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"gorm.io/gorm"
"log"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion example/base/update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package base

import (
"fmt"
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion example/common/gormplus.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package common

import (
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"gorm.io/driver/mysql"
"gorm.io/gorm"
"gorm.io/gorm/logger"
Expand Down
2 changes: 1 addition & 1 deletion example/common/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package common
import (
"encoding/json"
"fmt"
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion example/common/remove_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package common

import (
"fmt"
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion example/common/update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package common

import (
"github.com/gorm-plus/gorm-plus/gplus"
"github.com/acmestack/gorm-plus/gplus"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion example/common/user_dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package common

import "github.com/gorm-plus/gorm-plus/gplus"
import "github.com/acmestack/gorm-plus/gplus"

var userDao = NewUserDao[User]()

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/gorm-plus/gorm-plus
module github.com/acmestack/gorm-plus

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion gplus/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package gplus

import (
"fmt"
"github.com/gorm-plus/gorm-plus/constants"
"github.com/acmestack/gorm-plus/constants"
"strings"
)

Expand Down

0 comments on commit b009a73

Please sign in to comment.