* 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
13 lines
280 B
Rust
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::*;
|