winbrew_engines\portable/
mod.rs

1//! Portable install strategy for raw file-based payloads.
2//!
3//! The routing layer decides when a payload is portable; this module only
4//! owns the raw-copy install/remove strategy.
5
6mod install;
7mod remove;
8
9pub(crate) use install::install;
10pub(crate) use remove::remove;