#[cfg(feature = "imap")]
pub mod imap;
#[cfg(feature = "maildir")]
pub mod maildir;
#[cfg(feature = "notmuch")]
pub mod notmuch;
use async_trait::async_trait;
use crate::{envelope::Id, AnyResult};
#[async_trait]
pub trait RemoveMessages: Send + Sync {
async fn remove_messages(&self, folder: &str, id: &Id) -> AnyResult<()>;
}