Files
podman/pkg/util/utils_unsupported.go
2025-10-01 10:42:08 -04:00

11 lines
252 B
Go

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