package bootstrap import ( "wechat-conf/models" "wechat-conf/routers" "wechat-conf/utils" ) // SystemInit 系统初始化 func SystemInit() { // 数据库连接 models.InitDB() // 系统日志 utils.LogInit() // 微信系统 utils.WechatInit() // 路由系统 routers.RouteInit() }