1 Star 1 Fork 1

xiaoyutab / xgotool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
version.go 457 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoyutab 提交于 2024-04-24 11:09 . 调整命令运行规则
package xconsole
import (
"fmt"
"runtime"
)
// 输出当前程序版本信息
func version(help bool) string {
if help {
return "输出当前软件版本信息"
}
fmt.Println("当前软件版本为: ", _default.Version)
fmt.Println("xgotool依赖版本: ", _default.v)
fmt.Println("编译Go版本: ", runtime.Version())
fmt.Println("系统版本: ", runtime.GOOS, runtime.GOARCH)
fmt.Println("CPU核心数量: ", runtime.NumCPU())
return ""
}
Go
1
https://gitee.com/xiaoyutab/xgotool.git
git@gitee.com:xiaoyutab/xgotool.git
xiaoyutab
xgotool
xgotool
v0.3.13

搜索帮助