mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 02:59:00 -05:00
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")
|
|
}
|