3
0
mirror of https://github.com/42wim/matterbridge.git synced 2025-02-24 09:20:46 +01: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")
}