gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

hostid_darwin.go (134B)


      1 // +build darwin
      2 
      3 package xid
      4 
      5 import "syscall"
      6 
      7 func readPlatformMachineID() (string, error) {
      8 	return syscall.Sysctl("kern.uuid")
      9 }