1 Star 0 Fork 27

124436797@qq.com/murphysec

forked from murphysecurity/murphysec 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 380 Bytes
一键复制 编辑 原始数据 按行查看 历史
iseki 提交于 2022-01-17 04:00 . refactor: logger
package main
import (
"github.com/ztrue/shutdown"
"murphysec-cli-simple/cmd"
"murphysec-cli-simple/logger"
"os"
"syscall"
)
func main() {
go func() {
shutdown.Listen(os.Interrupt, os.Kill, syscall.SIGTERM, syscall.SIGINT)
logger.Warn.Println("Signal received")
os.Exit(-1)
}()
e := cmd.Execute()
if e != nil {
os.Exit(-1)
}
os.Exit(cmd.GetGlobalExitCode())
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/hrg/murphysec.git
git@gitee.com:hrg/murphysec.git
hrg
murphysec
murphysec
master

搜索帮助