mqtt/vendor/github.com/rs/xid/hostid_fallback.go

10 lines
165 B
Go
Raw Normal View History

2022-08-15 23:06:20 +03:00
// +build !darwin,!linux,!freebsd,!windows
package xid
import "errors"
func readPlatformMachineID() (string, error) {
return "", errors.New("not implemented")
}