加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 652 Bytes
一键复制 编辑 原始数据 按行查看 历史
fuzhe 提交于 2021-10-29 23:26 . add build.sh & setup.sh
package main
import (
"gatekeeper/install/check"
"gatekeeper/install/tool"
"os"
)
func main() {
var (
err error
)
tool.InitSystem()
err = check.InitRedis(); if err != nil{
tool.LogError.Println("connect redis error")
tool.LogError.Println(err)
os.Exit(-1)
}
err = check.InitDb(); if err != nil{
tool.LogError.Println(err)
os.Exit(-1)
}
err = check.InitConf(); if err != nil{
tool.LogError.Println(err)
os.Exit(-1)
}
//err = check.InitGo(); if err != nil{
// tool.LogWarning.Println(err)
// os.Exit(-1)
//}
//
//err = check.RunGateKeeper(); if err != nil{
// tool.LogError.Println(err)
// os.Exit(-1)
//}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化