Skip to main content

sbom_tools/cli/
mod.rs

1//! CLI command handlers.
2//!
3//! This module provides testable command handlers that are invoked by main.rs.
4//! Each handler implements the business logic for a specific CLI subcommand.
5
6mod diff;
7mod multi;
8mod quality;
9mod validate;
10mod view;
11
12pub use diff::run_diff;
13pub use multi::{run_diff_multi, run_matrix, run_timeline};
14pub use quality::run_quality;
15pub use validate::run_validate;
16pub use view::run_view;
17
18// Re-export config types used by handlers
19pub use crate::config::{DiffConfig, ViewConfig};