diff options
Diffstat (limited to 'vendor/github.com/rs/xid/hostid_darwin.go')
| -rw-r--r-- | vendor/github.com/rs/xid/hostid_darwin.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/rs/xid/hostid_darwin.go b/vendor/github.com/rs/xid/hostid_darwin.go new file mode 100644 index 0000000..08351ff --- /dev/null +++ b/vendor/github.com/rs/xid/hostid_darwin.go | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | // +build darwin | ||
| 2 | |||
| 3 | package xid | ||
| 4 | |||
| 5 | import "syscall" | ||
| 6 | |||
| 7 | func readPlatformMachineID() (string, error) { | ||
| 8 | return syscall.Sysctl("kern.uuid") | ||
| 9 | } | ||