2021-09-07 13:40:44 +08:00
|
|
|
package initialization
|
|
|
|
|
2021-09-07 14:25:39 +08:00
|
|
|
import (
|
|
|
|
"gateway/config"
|
|
|
|
"gateway/core"
|
|
|
|
)
|
|
|
|
|
2021-09-07 13:40:44 +08:00
|
|
|
// InitSystem 初始化系统
|
|
|
|
func InitSystem() {
|
2021-09-07 14:25:39 +08:00
|
|
|
// 初始化APP信息
|
|
|
|
config.InitAppInfo()
|
|
|
|
// 初始化日志工具
|
|
|
|
core.InitLogger()
|
2021-09-07 13:40:44 +08:00
|
|
|
// Nacos
|
|
|
|
initNacos()
|
|
|
|
}
|