3
0
mirror of https://github.com/42wim/matterbridge.git synced 2025-03-02 20:30:55 +01:00

10 lines
134 B
Go
Raw Normal View History

2018-05-27 21:48:57 +02:00
// +build darwin
package xid
import "syscall"
2018-05-27 21:48:57 +02:00
func readPlatformMachineID() (string, error) {
return syscall.Sysctl("kern.uuid")
2018-05-27 21:48:57 +02:00
}