...

Source file src/github.com/rs/xid/hostid_fallback.go

Documentation: github.com/rs/xid

     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  }
    10  

View as plain text