diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-27 16:56:20 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-27 16:56:20 +0200 |
commit | 390bad0ec451a571e119903054b581a9d9a00cbe (patch) | |
tree | 467fdf3ade0325b8c69ea8350a2f15fa181d8981 /src/imap/command/selected.rs | |
parent | d3f8a6627ca13a020bac9936d1f40a18239b6d6d (diff) | |
download | aerogramme-390bad0ec451a571e119903054b581a9d9a00cbe.tar.gz aerogramme-390bad0ec451a571e119903054b581a9d9a00cbe.zip |
Refactor files in a "mail" crate
Diffstat (limited to 'src/imap/command/selected.rs')
-rw-r--r-- | src/imap/command/selected.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imap/command/selected.rs b/src/imap/command/selected.rs index fb6a75d..e44bf36 100644 --- a/src/imap/command/selected.rs +++ b/src/imap/command/selected.rs @@ -9,7 +9,7 @@ use imap_codec::types::sequence::SequenceSet; use crate::imap::command::authenticated; use crate::imap::flow; use crate::imap::session::InnerContext; -use crate::mailbox::Mailbox; +use crate::mail::Mailbox; pub async fn dispatch<'a>( inner: InnerContext<'a>, |