Skip to content

Commit

Permalink
url
Browse files Browse the repository at this point in the history
  • Loading branch information
Mojito-source committed Jun 13, 2024
1 parent 8fb157d commit aeb2a62
Show file tree
Hide file tree
Showing 59 changed files with 75 additions and 75 deletions.
2 changes: 1 addition & 1 deletion adm/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"testing"

"github.com/GoAdminGroup/go-admin/modules/system"
"github.com/ChenSee/go-admin/modules/system"
"github.com/magiconair/properties/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion context/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"strings"
"time"

"github.com/GoAdminGroup/go-admin/modules/constant"
"github.com/ChenSee/go-admin/modules/constant"
)

const abortIndex int8 = math.MaxInt8 / 2
Expand Down
2 changes: 1 addition & 1 deletion examples/datamodel/tables.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package datamodel

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

// Generators is a map of table models.
//
Expand Down
2 changes: 1 addition & 1 deletion modules/db/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"sync"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
"xorm.io/xorm"
)

Expand Down
2 changes: 1 addition & 1 deletion modules/db/dialect/dialect.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package dialect
import (
"strings"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
)

// Dialect is methods set of different driver.
Expand Down
2 changes: 1 addition & 1 deletion modules/db/mssql.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strconv"
"strings"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
)

// Mssql is a Connection of mssql.
Expand Down
2 changes: 1 addition & 1 deletion modules/db/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package db
import (
"database/sql"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
)

// SQLTx is an in-progress database transaction.
Expand Down
2 changes: 1 addition & 1 deletion modules/db/oceanbase.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package db

import (
"database/sql"
"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
)

// OceanBase is a Connection of OceanBase.
Expand Down
2 changes: 1 addition & 1 deletion modules/db/postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strconv"
"strings"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
)

// Postgresql is a Connection of postgresql.
Expand Down
2 changes: 1 addition & 1 deletion modules/db/sqlite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package db
import (
"database/sql"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
)

// Sqlite is a Connection of sqlite.
Expand Down
2 changes: 1 addition & 1 deletion modules/db/statement_mysql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os/exec"
"testing"

_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/mysql"
_ "github.com/ChenSee/go-admin/modules/db/drivers/mysql"
)

var driverTestMysqlConn Connection
Expand Down
2 changes: 1 addition & 1 deletion modules/db/statement_postgresql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path"
"testing"

_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/postgres"
_ "github.com/ChenSee/go-admin/modules/db/drivers/postgres"
)

var driverTestPgConn Connection
Expand Down
2 changes: 1 addition & 1 deletion modules/file/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"path"
"sync"

"github.com/GoAdminGroup/go-admin/plugins/admin/modules"
"github.com/ChenSee/go-admin/plugins/admin/modules"
)

// Uploader is a file uploader which contains the method Upload.
Expand Down
2 changes: 1 addition & 1 deletion modules/file/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package file
import (
"mime/multipart"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
)

// LocalFileUploader is an Uploader of local file engine.
Expand Down
2 changes: 1 addition & 1 deletion modules/language/language.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"html/template"
"strings"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
"golang.org/x/text/language"
)

Expand Down
2 changes: 1 addition & 1 deletion modules/language/language_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"html/template"
"testing"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/config"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/admin/models/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package models
import (
"database/sql"

"github.com/GoAdminGroup/go-admin/modules/db"
"github.com/ChenSee/go-admin/modules/db"
)

// Base is base model structure.
Expand Down
2 changes: 1 addition & 1 deletion plugins/admin/models/permission.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strconv"
"strings"

"github.com/GoAdminGroup/go-admin/modules/db"
"github.com/ChenSee/go-admin/modules/db"
)

// PermissionModel is permission model structure.
Expand Down
12 changes: 6 additions & 6 deletions plugins/admin/models/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (
"strings"
"time"

"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/GoAdminGroup/go-admin/modules/db"
"github.com/GoAdminGroup/go-admin/modules/db/dialect"
"github.com/GoAdminGroup/go-admin/modules/logger"
"github.com/GoAdminGroup/go-admin/modules/utils"
"github.com/GoAdminGroup/go-admin/plugins/admin/modules/constant"
"github.com/ChenSee/go-admin/modules/config"
"github.com/ChenSee/go-admin/modules/db"
"github.com/ChenSee/go-admin/modules/db/dialect"
"github.com/ChenSee/go-admin/modules/logger"
"github.com/ChenSee/go-admin/modules/utils"
"github.com/ChenSee/go-admin/plugins/admin/modules/constant"
)

// UserModel is user model structure.
Expand Down
2 changes: 1 addition & 1 deletion plugins/admin/modules/constant/constant.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package constant

import (
"github.com/GoAdminGroup/go-admin/modules/constant"
"github.com/ChenSee/go-admin/modules/constant"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion plugins/admin/modules/table/config.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package table

import (
"github.com/GoAdminGroup/go-admin/modules/db"
"github.com/ChenSee/go-admin/modules/db"
)

type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion template/chartjs/bar.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"html/template"

template2 "github.com/GoAdminGroup/go-admin/template"
template2 "github.com/ChenSee/go-admin/template"
)

type BarChart struct {
Expand Down
2 changes: 1 addition & 1 deletion template/chartjs/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package chartjs
import (
"html/template"

template2 "github.com/GoAdminGroup/go-admin/template"
template2 "github.com/ChenSee/go-admin/template"
)

type Chart struct {
Expand Down
2 changes: 1 addition & 1 deletion template/chartjs/line.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"html/template"

template2 "github.com/GoAdminGroup/go-admin/template"
template2 "github.com/ChenSee/go-admin/template"
)

type LineChart struct {
Expand Down
2 changes: 1 addition & 1 deletion template/chartjs/pie.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"html/template"

template2 "github.com/GoAdminGroup/go-admin/template"
template2 "github.com/ChenSee/go-admin/template"
)

type PieChart struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/box.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type BoxAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/col.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type ColAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/label.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type LabelAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/link.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type LinkAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/paninator.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type PaginatorAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/popup.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type PopupAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/row.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type RowAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type TableAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/components/tabs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package components
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type TabsAttribute struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/carousel.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"html/template"
"strconv"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type Carousel struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package display
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type Copyable struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/date.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strconv"
"time"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type Date struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/dot.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package display
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type Dot struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/downloadable.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package display
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type Downloadable struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/loading.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package display
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type Loading struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/progressbar.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"html/template"
"strconv"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type ProgressBar struct {
Expand Down
2 changes: 1 addition & 1 deletion template/types/display/qrcode.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package display
import (
"html/template"

"github.com/GoAdminGroup/go-admin/template/types"
"github.com/ChenSee/go-admin/template/types"
)

type Qrcode struct {
Expand Down
Loading

0 comments on commit aeb2a62

Please sign in to comment.