memscope_rs/cli/commands/
mod.rs

1//! CLI command implementations
2//!
3//! This module contains the implementation of various CLI commands:
4//! - analyze: Memory analysis command
5//! - generate_report: Report generation command
6//! - test: Testing utilities
7
8pub mod analyze;
9pub mod generate_report;
10pub mod html_from_json;
11pub mod test;
12
13// Re-export command functions
14pub use analyze::run_analyze;
15pub use generate_report::run_generate_report;
16pub use html_from_json::run_html_from_json;
17pub use test::run_test;