From 92729c9ef420e8da729d9a22c9a3c831e2494a70 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 13 Oct 2025 17:02:22 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(core):=20rename?= =?UTF-8?q?=20Processor=20to=20RuleProcessor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - clarifies the purpose of the struct - avoids naming conflicts --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c80fe99..095f610 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,7 +24,7 @@ pub use error::Error; pub use gmail_client::DEFAULT_MAX_RESULTS; pub use gmail_client::GmailClient; pub(crate) use gmail_client::MessageSummary; -pub use processor::Processor; +pub use processor::RuleProcessor; pub use retention::MessageAge; pub use retention::Retention;