Skip to content

Commit aeb2a62

Browse files
committed
url
1 parent 8fb157d commit aeb2a62

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+75
-75
lines changed

adm/cli_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"testing"
55

6-
"github.com/GoAdminGroup/go-admin/modules/system"
6+
"github.com/ChenSee/go-admin/modules/system"
77
"github.com/magiconair/properties/assert"
88
)
99

context/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"strings"
2121
"time"
2222

23-
"github.com/GoAdminGroup/go-admin/modules/constant"
23+
"github.com/ChenSee/go-admin/modules/constant"
2424
)
2525

2626
const abortIndex int8 = math.MaxInt8 / 2

examples/datamodel/tables.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package datamodel
22

3-
import "github.com/GoAdminGroup/go-admin/plugins/admin/modules/table"
3+
import "github.com/ChenSee/go-admin/plugins/admin/modules/table"
44

55
// Generators is a map of table models.
66
//

modules/db/base.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
"sync"
77

8-
"github.com/GoAdminGroup/go-admin/modules/config"
8+
"github.com/ChenSee/go-admin/modules/config"
99
"xorm.io/xorm"
1010
)
1111

modules/db/dialect/dialect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package dialect
77
import (
88
"strings"
99

10-
"github.com/GoAdminGroup/go-admin/modules/config"
10+
"github.com/ChenSee/go-admin/modules/config"
1111
)
1212

1313
// Dialect is methods set of different driver.

modules/db/mssql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"strconv"
1212
"strings"
1313

14-
"github.com/GoAdminGroup/go-admin/modules/config"
14+
"github.com/ChenSee/go-admin/modules/config"
1515
)
1616

1717
// Mssql is a Connection of mssql.

modules/db/mysql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package db
77
import (
88
"database/sql"
99

10-
"github.com/GoAdminGroup/go-admin/modules/config"
10+
"github.com/ChenSee/go-admin/modules/config"
1111
)
1212

1313
// SQLTx is an in-progress database transaction.

modules/db/oceanbase.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package db
22

33
import (
44
"database/sql"
5-
"github.com/GoAdminGroup/go-admin/modules/config"
5+
"github.com/ChenSee/go-admin/modules/config"
66
)
77

88
// OceanBase is a Connection of OceanBase.

modules/db/postgresql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strconv"
1111
"strings"
1212

13-
"github.com/GoAdminGroup/go-admin/modules/config"
13+
"github.com/ChenSee/go-admin/modules/config"
1414
)
1515

1616
// Postgresql is a Connection of postgresql.

modules/db/sqlite.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package db
77
import (
88
"database/sql"
99

10-
"github.com/GoAdminGroup/go-admin/modules/config"
10+
"github.com/ChenSee/go-admin/modules/config"
1111
)
1212

1313
// Sqlite is a Connection of sqlite.

0 commit comments

Comments
 (0)