pub type CliResult = Result<(), Box<dyn Error>>;
pub enum CliResult { Ok(()), Err(Box<dyn Error>), }
Contains the success value
Contains the error value