diff options
Diffstat (limited to 'src/imap/command.rs')
-rw-r--r-- | src/imap/command.rs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/imap/command.rs b/src/imap/command.rs deleted file mode 100644 index adf2f90..0000000 --- a/src/imap/command.rs +++ /dev/null @@ -1,29 +0,0 @@ -use anyhow::{Error, Result}; -use boitalettres::errors::Error as BalError; -use boitalettres::proto::{Request, Response}; -use imap_codec::types::core::{AString, Tag}; -use imap_codec::types::fetch_attributes::MacroOrFetchAttributes; -use imap_codec::types::mailbox::{ListMailbox, Mailbox as MailboxCodec}; -use imap_codec::types::response::{Capability, Code, Data, Response as ImapRes, Status}; -use imap_codec::types::sequence::SequenceSet; - -use crate::mailbox::Mailbox; -use crate::session; - -pub struct Command<'a> { - tag: Tag, - session: &'a mut session::Instance, -} - -// @FIXME better handle errors, our conversions are bad due to my fork of BàL -// @FIXME store the IMAP state in the session as an enum. -impl<'a> Command<'a> { - pub fn new(tag: Tag, session: &'a mut session::Instance) -> Self { - Self { tag, session } - } - - - - - -} |