//go:build !linux package storage import "fmt" // ScanDisks is not supported on non-Linux platforms. func ScanDisks() (*ScanResult, error) { return nil, fmt.Errorf("storage init is only supported on Linux") }