mirror of
https://github.com/status-im/matterbridge.git
synced 2025-01-09 13:55:57 +00:00
10 lines
134 B
Go
10 lines
134 B
Go
// +build darwin
|
|
|
|
package xid
|
|
|
|
import "syscall"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return syscall.Sysctl("kern.uuid")
|
|
}
|