♻️ refactor(core): rename eol_cmd module to eol_action

- rename `eol_cmd` module to `eol_action` for clarity
- update module import and export statements
This commit is contained in:
Jeremiah Russell
2025-10-09 14:02:39 +01:00
committed by Jeremiah Russell
parent a317372d3a
commit ae41e86744

View File

@@ -6,7 +6,7 @@
mod config; mod config;
mod credential; mod credential;
mod eol_cmd; mod eol_action;
mod error; mod error;
mod labels; mod labels;
mod message_list; mod message_list;
@@ -17,6 +17,7 @@ pub(crate) mod utils;
pub use config::Config; pub use config::Config;
pub use credential::Credential; pub use credential::Credential;
pub use eol_action::EolAction;
pub use error::Error; pub use error::Error;
pub use labels::Labels; pub use labels::Labels;
pub use message_list::DEFAULT_MAX_RESULTS; pub use message_list::DEFAULT_MAX_RESULTS;