Marvin Preuss
d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
165 B
Go
10 lines
165 B
Go
// +build !darwin,!linux,!freebsd,!windows
|
|
|
|
package xid
|
|
|
|
import "errors"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return "", errors.New("not implemented")
|
|
}
|