From ebd5d566030aea9db06277fc7ae4595c776c1678 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 13 Oct 2025 12:11:27 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(core):=20rename?= =?UTF-8?q?=20labels=20module=20to=20gmail=5Fclient?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - rename labels module to gmail_client for better clarity and context --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 09b6d5c..97cfdcf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ mod credential; mod delete; mod eol_action; mod error; -mod labels; +mod gmail_client; mod message_list; mod processor; mod retention; @@ -22,7 +22,7 @@ pub use credential::Credential; pub use delete::Delete; pub use eol_action::EolAction; pub use error::Error; -pub use labels::Labels; +pub use gmail_client::GmailClient; pub use message_list::DEFAULT_MAX_RESULTS; pub use message_list::MessageList; pub use processor::Processor;