diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-06 11:07:53 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-06 11:07:53 +0100 |
commit | a84ba4d42fcdb38be514178eb9fced777ba76055 (patch) | |
tree | a58b8e9b3528294b084c2eb2fe37f28128437bc8 /src/imap/mod.rs | |
parent | 4806f7ff84c595ec6647744577388fe4fab33736 (diff) | |
download | aerogramme-a84ba4d42fcdb38be514178eb9fced777ba76055.tar.gz aerogramme-a84ba4d42fcdb38be514178eb9fced777ba76055.zip |
Mailbox View made more readable
Diffstat (limited to 'src/imap/mod.rs')
-rw-r--r-- | src/imap/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs index ea34629..4142ef9 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -4,12 +4,12 @@ mod command; mod flags; mod flow; mod imf_view; +mod index; mod mail_view; mod mailbox_view; mod mime_view; mod response; mod search; -mod selectors; mod session; use std::net::SocketAddr; |