Skip to main content

lean_ctx/tools/
ctx_wrapped.rs

1use crate::core::wrapped::WrappedReport;
2
3pub fn handle(period: &str) -> String {
4    let report = WrappedReport::generate(period);
5    report.format_compact()
6}