File: hostid_fallback.go

package info (click to toggle)
golang-github-rs-xid 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 152 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (2)
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")
}