25 lines
347 B
Go
25 lines
347 B
Go
package mysql
|
|
|
|
import (
|
|
"github.com/suyiiyii/hertz101/app/facade/conf"
|
|
"gorm.io/driver/mysql"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
DB *gorm.DB
|
|
err error
|
|
)
|
|
|
|
func Init() {
|
|
DB, err = gorm.Open(mysql.Open(conf.GetConf().MySQL.DSN),
|
|
&gorm.Config{
|
|
PrepareStmt: true,
|
|
SkipDefaultTransaction: true,
|
|
},
|
|
)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|