Files
zosstorage/src/partition/mod.rs
Jan De Landtsheer 3d14f77516 mount: prefer boot disk ESP and run cargo fmt
* choose ESP matching the primary data disk when multiple ESPs exist,
  falling back gracefully for single-disk layouts
* keep new helper to normalize device names and reuse the idempotent
  mount logic
* apply cargo fmt across the tree
2025-10-10 14:49:39 +02:00

13 lines
280 B
Rust

//! Partition module barrel.
//!
//! Re-exports the concrete planning/apply implementation from plan.rs to avoid a large mod.rs.
//! See [src/partition/plan.rs](plan.rs) for details.
//
// REGION: API
// api: partition::plan::*
// REGION: API-END
pub mod plan;
pub use plan::*;