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.
56mod install;
7mod remove;
89pub(crate) use install::install;
10pub(crate) use remove::remove;