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