2
0
mirror of https://github.com/status-im/matterbridge.git synced 2025-02-23 19:28:10 +00:00
2018-05-27 21:48:57 +02:00

10 lines
165 B
Go

// +build !darwin,!linux,!freebsd,!windows
package xid
import "errors"
func readPlatformMachineID() (string, error) {
return "", errors.New("not implemented")
}