aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/rs/xid/hostid_fallback.go
blob: 7fbd3c004d17709242c163abb5d227db5f97de09 (plain) (blame)
1
2
3
4
5
6
7
8
9
// +build !darwin,!linux,!freebsd,!windows

package xid

import "errors"

func readPlatformMachineID() (string, error) {
	return "", errors.New("not implemented")
}