mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00
14 lines
283 B
Go
14 lines
283 B
Go
//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")
|
|
}
|