1//! Archive-backed install strategy for file-based payloads.
2//!
3//! The engine decides archive-vs-raw behavior elsewhere; this module only
4//! owns the archive-backed install/remove strategy.
56mod install;
7mod remove;
89pub(crate) use install::install;
10pub(crate) use remove::remove;