use std::{io, path::Path};
pub use crate::fat32::create_fat32_image;
pub use crate::iso::create_iso_from_img;
mod fat32;
mod iso;
mod utils;
pub fn create_disk_and_iso(iso_path: &Path, efi_path: &Path) -> io::Result<()> {
create_iso_from_img(iso_path, efi_path)?;
Ok(())
}