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