From 0d98604fe55692661c9d2970ce4f68bbe041fc57 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 10 Oct 2025 14:42:48 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(core):=20introduce=20message?= =?UTF-8?q?=20processor=20module?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add `processor.rs` for handling message processing logic - export `Processor` struct for external use --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index e555f6f..09b6d5c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,6 +11,7 @@ mod eol_action; mod error; mod labels; mod message_list; +mod processor; mod retention; mod trash; @@ -24,6 +25,7 @@ pub use error::Error; pub use labels::Labels; pub use message_list::DEFAULT_MAX_RESULTS; pub use message_list::MessageList; +pub use processor::Processor; pub use retention::MessageAge; pub use retention::Retention; pub use trash::Trash;