update: 依赖更新。

This commit is contained in:
lanyulei
2023-11-28 22:18:28 +08:00
parent 829dc3a4ec
commit c9daf3fc54
19 changed files with 110 additions and 9471 deletions

View File

@@ -1,15 +0,0 @@
// +build sqlite3
package database
import (
_ "github.com/jinzhu/gorm/dialects/sqlite"
)
type SqlLite struct {
}
func (*SqlLite) Open(dbType string, conn string) (db *gorm.DB, err error) {
eloquent, err := gorm.Open(dbType, conn)
return eloquent, err
}