summaryrefslogtreecommitdiff
path: root/pkg/util/utils_unsupported.go
blob: 62805d7c8ddba7cffd002b26e180ea2bfa486a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +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")
}