Move src/imap_client.rs into src/imap/client.rs

This commit is contained in:
Alexander Krotov
2020-02-16 03:54:14 +03:00
committed by holger krekel
parent 8ed08f701d
commit 4eb9660bfa
4 changed files with 4 additions and 3 deletions

View File

@@ -7,8 +7,8 @@ use std::sync::atomic::Ordering;
use std::time::{Duration, SystemTime};
use crate::context::Context;
use crate::imap_client::*;
use super::client::{IdleHandle, Session};
use super::select_folder;
type Result<T> = std::result::Result<T, Error>;