16 Star 117 Fork 30

GVPmurphysecurity/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/murphysecurity/murphysec.git
[email protected]:murphysecurity/murphysec.git
murphysecurity
murphysec
murphysec
v3

搜索帮助