diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-29 16:05:34 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-29 16:05:34 +0200 |
commit | 733c59ed8060f8903d723635ed2e7c13ccca7974 (patch) | |
tree | 0090b72c1c347a7168a825341683481f0d1845cc /src/mail/mod.rs | |
parent | 9ef069923bbf7358caf1f2739befe20adbdca760 (diff) | |
download | aerogramme-733c59ed8060f8903d723635ed2e7c13ccca7974.tar.gz aerogramme-733c59ed8060f8903d723635ed2e7c13ccca7974.zip |
Cleanup and remove useless imports
Diffstat (limited to 'src/mail/mod.rs')
-rw-r--r-- | src/mail/mod.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mail/mod.rs b/src/mail/mod.rs index 7bee703..bbb553a 100644 --- a/src/mail/mod.rs +++ b/src/mail/mod.rs @@ -3,18 +3,6 @@ pub mod uidindex; pub mod unique_ident; pub mod user; -use std::convert::TryFrom; - -use anyhow::Result; -use k2v_client::K2vClient; -use rusoto_s3::S3Client; - -use crate::bayou::Bayou; -use crate::cryptoblob::Key; -use crate::login::Credentials; -use crate::mail::uidindex::*; -use crate::mail::unique_ident::*; - // Internet Message Format // aka RFC 822 - RFC 2822 - RFC 5322 pub struct IMF<'a> { |