github.com/jxskiss/gopkg/v2@v2.14.9-0.20240514120614-899f3e7952b4/internal/machineid/id_fallback.go (about)

     1  //go:build !darwin && !linux && !freebsd && !windows
     2  
     3  package machineid
     4  
     5  import "errors"
     6  
     7  func readPlatformMachineID() (string, error) {
     8  	return "", errors.New("not implemented for this platform")
     9  }