hostid_fallback.go 165 B

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