gtsocial-umbx

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

hostid_fallback.go (165B)


      1 // +build !darwin,!linux,!freebsd,!windows
      2 
      3 package xid
      4 
      5 import "errors"
      6 
      7 func readPlatformMachineID() (string, error) {
      8 	return "", errors.New("not implemented")
      9 }