Factor src/imap/session.rs out of src/imap/client.rs

This commit is contained in:
Alexander Krotov
2020-02-16 04:04:57 +03:00
committed by holger krekel
parent 4eb9660bfa
commit 4c42acc7e1
4 changed files with 198 additions and 189 deletions

View File

@@ -32,8 +32,10 @@ use crate::stock::StockMessage;
mod client;
mod idle;
pub mod select_folder;
mod session;
use client::{Client, Session};
use client::Client;
use session::Session;
type Result<T> = std::result::Result<T, Error>;