Skip to content

Commit b009a73

Browse files
committed
chore: update package name
1 parent 05f0869 commit b009a73

12 files changed

+12
-12
lines changed

example/base/delete_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package base
1919

2020
import (
2121
"fmt"
22-
"github.com/gorm-plus/gorm-plus/gplus"
22+
"github.com/acmestack/gorm-plus/gplus"
2323
"testing"
2424
)
2525

example/base/gormplus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package base
1919

2020
import (
21-
"github.com/gorm-plus/gorm-plus/gplus"
21+
"github.com/acmestack/gorm-plus/gplus"
2222
"gorm.io/driver/mysql"
2323
"gorm.io/gorm"
2424
"gorm.io/gorm/logger"

example/base/insert_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package base
2020
import (
2121
"encoding/json"
2222
"fmt"
23-
"github.com/gorm-plus/gorm-plus/gplus"
23+
"github.com/acmestack/gorm-plus/gplus"
2424
"testing"
2525
)
2626

example/base/select_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package base
2020
import (
2121
"encoding/json"
2222
"errors"
23-
"github.com/gorm-plus/gorm-plus/gplus"
23+
"github.com/acmestack/gorm-plus/gplus"
2424
"gorm.io/gorm"
2525
"log"
2626
"testing"

example/base/update_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package base
1919

2020
import (
2121
"fmt"
22-
"github.com/gorm-plus/gorm-plus/gplus"
22+
"github.com/acmestack/gorm-plus/gplus"
2323
"testing"
2424
)
2525

example/common/gormplus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package common
1919

2020
import (
21-
"github.com/gorm-plus/gorm-plus/gplus"
21+
"github.com/acmestack/gorm-plus/gplus"
2222
"gorm.io/driver/mysql"
2323
"gorm.io/gorm"
2424
"gorm.io/gorm/logger"

example/common/list_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package common
2020
import (
2121
"encoding/json"
2222
"fmt"
23-
"github.com/gorm-plus/gorm-plus/gplus"
23+
"github.com/acmestack/gorm-plus/gplus"
2424
"testing"
2525
)
2626

example/common/remove_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package common
1919

2020
import (
2121
"fmt"
22-
"github.com/gorm-plus/gorm-plus/gplus"
22+
"github.com/acmestack/gorm-plus/gplus"
2323
"testing"
2424
)
2525

example/common/update_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package common
1919

2020
import (
21-
"github.com/gorm-plus/gorm-plus/gplus"
21+
"github.com/acmestack/gorm-plus/gplus"
2222
"testing"
2323
)
2424

example/common/user_dao.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
package common
1919

20-
import "github.com/gorm-plus/gorm-plus/gplus"
20+
import "github.com/acmestack/gorm-plus/gplus"
2121

2222
var userDao = NewUserDao[User]()
2323

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/gorm-plus/gorm-plus
1+
module github.com/acmestack/gorm-plus
22

33
go 1.18
44

gplus/query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package gplus
1919

2020
import (
2121
"fmt"
22-
"github.com/gorm-plus/gorm-plus/constants"
22+
"github.com/acmestack/gorm-plus/constants"
2323
"strings"
2424
)
2525

0 commit comments

Comments
 (0)