use crate::devices::DeviceInfo;
use crate::platform::traits::DeviceInventory;
use anyhow::Result;
use super::MacPlatform;
impl DeviceInventory for MacPlatform {
fn list_storage_devices() -> Result<Vec<DeviceInfo>> {
Ok(Vec::new())
}
fn device_size_bytes(_path: &str) -> Option<u64> {
None
}
fn is_removable(_path: &str) -> Result<bool> {
Ok(true)
}
}