1 Star 0 Fork 28

tianzx/murphysec

forked from murphysecurity/murphysec 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 267 Bytes
一键复制 编辑 原始数据 按行查看 历史
iseki 提交于 2023-01-17 11:31 . refactor(main): move entrypoint to root
package main
import (
"fmt"
"github.com/murphysecurity/murphysec/cmd/murphy"
"github.com/murphysecurity/murphysec/infra/exitcode"
"os"
)
func main() {
if e := murphy.Execute(); e != nil {
fmt.Fprintln(os.Stderr, e.Error())
os.Exit(1)
}
exitcode.Exit()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tianzx/murphysec.git
[email protected]:tianzx/murphysec.git
tianzx
murphysec
murphysec
v3

搜索帮助