huangjiajun 1 month ago
parent
commit
02d333067d
1 changed files with 7 additions and 8 deletions
  1. +7
    -8
      main.go

+ 7
- 8
main.go View File

@@ -16,15 +16,14 @@ import (
"applet/app/utils" "applet/app/utils"
) )


//系统初始化
// 系统初始化
func init() { func init() {
cfg.InitCfg() //配置初始化
cfg.InitLog() //日志初始化
cfg.InitCache() //缓存初始化
cfg.InitCacheSecond() //缓存初始化
cfg.InitMq() //缓存初始化
cfg.InitEs() //ElasticSearch初始化
if cfg.Debug { //判断是否是debug
cfg.InitCfg() //配置初始化
cfg.InitLog() //日志初始化
cfg.InitCache() //缓存初始化
cfg.InitMq() //缓存初始化
cfg.InitEs() //ElasticSearch初始化
if cfg.Debug { //判断是否是debug
if err := db.InitDB(cfg.DB); err != nil { //主数据库初始化 if err := db.InitDB(cfg.DB); err != nil { //主数据库初始化
panic(err) panic(err)
} }


Loading…
Cancel
Save