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/imap/command/anonymous.rs | |
parent | 9ef069923bbf7358caf1f2739befe20adbdca760 (diff) | |
download | aerogramme-733c59ed8060f8903d723635ed2e7c13ccca7974.tar.gz aerogramme-733c59ed8060f8903d723635ed2e7c13ccca7974.zip |
Cleanup and remove useless imports
Diffstat (limited to 'src/imap/command/anonymous.rs')
-rw-r--r-- | src/imap/command/anonymous.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/imap/command/anonymous.rs b/src/imap/command/anonymous.rs index 8cd986c..84d0dca 100644 --- a/src/imap/command/anonymous.rs +++ b/src/imap/command/anonymous.rs @@ -69,8 +69,6 @@ impl<'a> AnonymousContext<'a> { Ok(c) => c, }; - let s3_client = creds.s3_client(); - let k2v_client = creds.k2v_client(); let user = User::new(u.clone(), creds)?; tracing::info!(username=%u, "connected"); |