ferry/database/initialize.go
YuleiLan cca0845f24 new
2020-07-13 20:33:20 +08:00

12 lines
166 B
Go

package database
import "ferry/tools/config"
func Setup() {
dbType := config.DatabaseConfig.Dbtype
if dbType == "mysql" {
var db = new(Mysql)
db.Setup()
}
}