mirror of
https://github.com/documize/community.git
synced 2025-07-24 23:59:47 +02:00
Xid dependency updated. Moved to 20 length ID values. Added new revision number to version and meta information. Revision number is timestamp format.
9 lines
165 B
Go
Executable file
9 lines
165 B
Go
Executable file
// +build !darwin,!linux,!freebsd,!windows
|
|
|
|
package xid
|
|
|
|
import "errors"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return "", errors.New("not implemented")
|
|
}
|