Files
gormx/gormx_test.go
T

19 lines
229 B
Go
Raw Normal View History

2024-04-06 18:22:44 +08:00
package gormx_test
import (
"testing"
"code.yun.ink/pkg/gormx"
)
func TestGormx(t *testing.T) {
db := gormx.NewGorm(gormx.SetMysql(
"root",
"Huang@Yun.Ink123",
"127.0.0.1",
"xiaoxin-plus",
3306,
))
db.Get("")
}