winbrew_engines\archive/
mod.rs

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.
5
6mod install;
7mod remove;
8
9pub(crate) use install::install;
10pub(crate) use remove::remove;