1
0
forked from lug/matterbridge

Add vendor github.com/rs/xid

This commit is contained in:
Wim
2018-05-27 21:48:57 +02:00
parent ab1670e2ce
commit fc6074ea9f
8 changed files with 464 additions and 0 deletions

9
vendor/github.com/rs/xid/hostid_fallback.go generated vendored Normal file
View File

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