From ca4c2e7505f28acad688705d45cc5c5dca1799c3 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Mon, 20 Jun 2022 18:09:20 +0200 Subject: WIP refactor --- src/imap/command.rs | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/imap/command.rs (limited to 'src/imap/command.rs') 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 } - } - - - - - -} -- cgit v1.2.3