From 80c8bbc863fa90c0581e4c753d317612beea2e6c Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Wed, 8 Oct 2025 16:14:55 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(lib):=20introduce=20Result=20t?= =?UTF-8?q?ype=20alias=20for=20error=20handling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add `Result` type alias for cleaner error handling throughout the crate --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index c6cad50..3432200 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,3 +24,6 @@ pub use message_list::MessageList; pub use retention::MessageAge; pub use retention::Retention; pub use trash::Trash; + +/// Type alias for result with crate Error +pub type Result = std::result::Result;