diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-18 18:03:21 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-18 18:03:21 +0100 |
commit | 2c5adc8f166c6117ece353376b9071f5e30857b1 (patch) | |
tree | 1590c1277342734ee6f06b1a388c0fc63ecd8acf /src/imap/response.rs | |
parent | 43b668531f060a2c0f950da96b363b2ea7cf4e06 (diff) | |
download | aerogramme-2c5adc8f166c6117ece353376b9071f5e30857b1.tar.gz aerogramme-2c5adc8f166c6117ece353376b9071f5e30857b1.zip |
reformat code
Diffstat (limited to 'src/imap/response.rs')
-rw-r--r-- | src/imap/response.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imap/response.rs b/src/imap/response.rs index afcb29f..40e6927 100644 --- a/src/imap/response.rs +++ b/src/imap/response.rs @@ -1,9 +1,9 @@ -use std::sync::Arc; use anyhow::Result; -use tokio::sync::Notify; use imap_codec::imap_types::command::Command; use imap_codec::imap_types::core::Tag; use imap_codec::imap_types::response::{Code, Data, Status}; +use std::sync::Arc; +use tokio::sync::Notify; #[derive(Debug)] pub enum Body<'a> { |