Skip to main content

lean_ctx/tools/
ctx_delta.rs

1use crate::core::cache::SessionCache;
2use crate::tools::CrpMode;
3
4/// Thin redirect: delegates to ctx_read mode=diff.
5pub fn handle(cache: &mut SessionCache, path: &str) -> String {
6    crate::tools::ctx_read::handle(cache, path, "diff", CrpMode::effective())
7}