1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-26 00:29:47 +02:00
documize/core/uniqueid/xid/hostid_freebsd.go

10 lines
139 B
Go
Raw Normal View History

// +build freebsd
package xid
import "syscall"
func readPlatformMachineID() (string, error) {
return syscall.Sysctl("kern.hostuuid")
}