3 Star 0 Fork 3

上海炘璞电子科技有限公司 / detonator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
uid.go 214 Bytes
一键复制 编辑 原始数据 按行查看 历史
alex.dou 提交于 2023-11-10 15:40 . c
package wsid
import (
"github.com/shirou/gopsutil/cpu"
"strings"
)
func GetHwId() string {
cpuInfo, err := cpu.Info()
if err != nil {
return ""
}
ci := cpuInfo[0]
return strings.ToLower(ci.PhysicalID)
}
Go
1
https://gitee.com/thingple/detonator.git
git@gitee.com:thingple/detonator.git
thingple
detonator
detonator
v0.0.19

搜索帮助