summaryrefslogtreecommitdiff
path: root/pkg/util/utils_unsupported.go
blob: 3a0f8646b23825598a32ab6a24fe64dd9a81ae4d (plain)
1
2
3
4
5
6
7
8
9
10
11
//go:build darwin || windows
// +build darwin windows

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")
}