From ae41e86744bb04f5638e70e821295e74224a73bc Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 9 Oct 2025 14:02:39 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(core):=20rename?= =?UTF-8?q?=20eol=5Fcmd=20module=20to=20eol=5Faction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - rename `eol_cmd` module to `eol_action` for clarity - update module import and export statements --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3432200..e7d7030 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ mod config; mod credential; -mod eol_cmd; +mod eol_action; mod error; mod labels; mod message_list; @@ -17,6 +17,7 @@ pub(crate) mod utils; pub use config::Config; pub use credential::Credential; +pub use eol_action::EolAction; pub use error::Error; pub use labels::Labels; pub use message_list::DEFAULT_MAX_RESULTS;