feat(lib): add trash module for moving messages to trash

- introduce trash module to handle deletion of messages
This commit is contained in:
Jeremiah Russell
2025-10-06 09:52:52 +01:00
committed by Jeremiah Russell
parent eedc616b8e
commit b7792bedc6

View File

@@ -8,6 +8,7 @@ mod credential;
mod error;
mod labels;
mod message_list;
mod trash;
pub(crate) mod utils;
pub use credential::Credential;
@@ -15,3 +16,4 @@ pub use error::Error;
pub use labels::Labels;
pub use message_list::DEFAULT_MAX_RESULTS;
pub use message_list::MessageList;
pub use trash::Trash;