1//! Command implementations 2 3pub mod diff; 4pub mod search; 5pub mod telemetry; 6 7pub use diff::run_diff; 8pub use search::run_search; 9pub use telemetry::run_telemetry;