2
0
mirror of https://github.com/status-im/matterbridge.git synced 2025-02-23 19:28:10 +00:00
2018-11-25 21:21:04 +01:00

10 lines
139 B
Go

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