aboutsummaryrefslogtreecommitdiff
path: root/src/imap/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/imap/mod.rs')
-rw-r--r--src/imap/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs
index 73cd943..589231b 100644
--- a/src/imap/mod.rs
+++ b/src/imap/mod.rs
@@ -1,6 +1,7 @@
mod command;
mod flow;
mod mailbox_view;
+mod response;
mod session;
use std::task::{Context, Poll};
@@ -19,7 +20,7 @@ use crate::config::ImapConfig;
use crate::login::ArcLoginProvider;
/// Server is a thin wrapper to register our Services in BàL
-pub struct Server{}
+pub struct Server {}
pub async fn new(config: ImapConfig, login: ArcLoginProvider) -> Result<Server> {
unimplemented!();