bootstrap.go 344B

12345678910111213141516171819202122232425
  1. package bootstrap
  2. import (
  3. "wechat-conf/models"
  4. "wechat-conf/routers"
  5. "wechat-conf/utils"
  6. )
  7. // SystemInit 系统初始化
  8. func SystemInit() {
  9. // 数据库连接
  10. models.InitDB()
  11. // 系统日志
  12. utils.LogInit()
  13. // 第三方平台
  14. models.ComponentInit()
  15. // 微信系统
  16. models.InitWechat()
  17. // 路由系统
  18. routers.RouteInit()
  19. }