mirror of
https://github.com/documize/community.git
synced 2025-07-24 23:59:47 +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
134 B
Go
Executable file
9 lines
134 B
Go
Executable file
// +build darwin
|
|
|
|
package xid
|
|
|
|
import "syscall"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return syscall.Sysctl("kern.uuid")
|
|
}
|