12345678910111213141516171819202122232425 |
- package bootstrap
-
- import (
- "wechat-conf/models"
- "wechat-conf/routers"
- "wechat-conf/utils"
- )
-
-
- func SystemInit() {
-
- models.InitDB()
-
-
- utils.LogInit()
-
-
- models.ComponentInit()
-
-
- models.InitWechat()
-
-
- routers.RouteInit()
- }
|