Skip to main content

lean_ctx/shell/compress/
mod.rs

1mod classification;
2pub(crate) mod engine;
3mod footer;
4mod passthrough;
5#[cfg(test)]
6mod tests;
7
8pub use engine::compress_if_beneficial_pub;
9pub use footer::shell_savings_footer;
10
11pub(super) use classification::is_excluded_command;
12pub(super) use engine::compress_and_measure;
13
14pub use classification::has_structural_output;
15pub use classification::is_verbatim_output;