aboutsummaryrefslogtreecommitdiff
path: root/src/imap/command/authenticated.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-02-27 18:33:49 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-02-27 18:33:49 +0100
commit7f35e68bfe21c61f4da9e37f127dd7abb73291fa (patch)
tree2889fc4ee0ef7451b22b0c34826e9d0187e8e49f /src/imap/command/authenticated.rs
parent9a58a4e932156e0207380bb3b0a93a59864b0e1c (diff)
downloadaerogramme-7f35e68bfe21c61f4da9e37f127dd7abb73291fa.tar.gz
aerogramme-7f35e68bfe21c61f4da9e37f127dd7abb73291fa.zip
Refactor
Diffstat (limited to 'src/imap/command/authenticated.rs')
-rw-r--r--src/imap/command/authenticated.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/imap/command/authenticated.rs b/src/imap/command/authenticated.rs
index eb8833d..3d332ec 100644
--- a/src/imap/command/authenticated.rs
+++ b/src/imap/command/authenticated.rs
@@ -22,8 +22,9 @@ use crate::imap::response::Response;
use crate::imap::Body;
use crate::mail::uidindex::*;
-use crate::mail::user::{User, MAILBOX_HIERARCHY_DELIMITER as MBX_HIER_DELIM_RAW};
+use crate::user::User;
use crate::mail::IMF;
+use crate::mail::namespace::MAILBOX_HIERARCHY_DELIMITER as MBX_HIER_DELIM_RAW;
pub struct AuthenticatedContext<'a> {
pub req: &'a Command<'static>,