1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Command line helpers pub mod client; pub mod parser; pub mod runner; #[cfg(feature = "openpgp")] pub mod validation; #[cfg(feature = "env_logger")] pub mod log; pub trait CommandDefaults { fn progress(&self) -> bool { true } }