blob: 26fb7adf9231b5ec90ba4d3efa5a96ff4d31c79d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build darwin || windows || freebsd
// +build darwin windows freebsd
package util
import "errors"
// FindDeviceNodes is not implemented anywhere except Linux.
func FindDeviceNodes() (map[string]string, error) {
return nil, errors.New("not supported on non-Linux OSes")
}
|