pub type Result<T> = Result<T, DoumError>;
doum-cli에서 사용하는 결과 타입
pub enum Result<T> { Ok(T), Err(DoumError), }
Contains the success value
Contains the error value