|
//go:build darwin || windows
|
|
// +build darwin windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// FindDeviceNodes is not implemented anywhere except Linux.
|
|
func FindDeviceNodes() (map[string]string, error) {
|
|
return nil, errors.Errorf("not supported on non-Linux OSes")
|
|
}
|