5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 20:42:31 +00:00
matterbridge/vendor/github.com/rs/xid/hostid_freebsd.go

10 lines
150 B
Go
Raw Normal View History

2018-05-27 19:48:57 +00:00
// +build freebsd
package xid
import "golang.org/x/sys/unix"
func readPlatformMachineID() (string, error) {
return unix.Sysctl("kern.hostuuid")
}