liblitho 0.2.0

cli tool to flash/clone the images to storage devices
Documentation
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)
    }
}