mirror of
https://github.com/documize/community.git
synced 2025-07-25 08:09:43 +02:00
Xid dependency updated. Moved to 20 length ID values. Added new revision number to version and meta information. Revision number is timestamp format.
9 lines
139 B
Go
Executable file
9 lines
139 B
Go
Executable file
// +build freebsd
|
|
|
|
package xid
|
|
|
|
import "syscall"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return syscall.Sysctl("kern.hostuuid")
|
|
}
|