aozhiwei 444edafd54 1
2020-12-19 11:59:30 +08:00

22 lines
286 B
Go

package main
import (
"q5"
)
type DBEngine struct {
}
func (this *DBEngine) Init() *DBEngine {
return this
}
func (this *DBEngine) UnInit() {
}
func (this *DBEngine) NewAdminConn() *q5.Mysql {
conn := q5.NewMysql("127.0.0.1", 3306, "root", "keji178", "admindb")
return conn
}