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