summaryrefslogtreecommitdiffstats
path: root/melib/src/lib.rs
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2019-05-26 15:54:45 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-06-10 19:40:50 +0300
commitc6674a294df73aa916ef1fe77ef431d764be3abb (patch)
treebd6e74fe9829554a19dfa6b21de9b726db507dcb /melib/src/lib.rs
parent865c9a6befcb644e5cb6455e85a805c551da9a74 (diff)
melib: unwrap mailbox module
Diffstat (limited to 'melib/src/lib.rs')
-rw-r--r--melib/src/lib.rs10
1 files changed, 8 insertions, 2 deletions
diff --git a/melib/src/lib.rs b/melib/src/lib.rs
index 4e2d2949..b05dc4ff 100644
--- a/melib/src/lib.rs
+++ b/melib/src/lib.rs
@@ -79,10 +79,16 @@ pub mod dbg {
pub mod addressbook;
pub mod async_workers;
+pub mod backends;
+mod collection;
pub mod conf;
+pub mod email;
pub mod error;
pub mod grapheme_clusters;
pub mod mailbox;
+pub mod thread;
+pub use crate::email::*;
+pub use thread::*;
mod wcwidth;
pub use self::grapheme_clusters::*;
pub use self::wcwidth::*;
@@ -109,8 +115,8 @@ extern crate uuid;
pub use conf::*;
pub use mailbox::*;
+pub use backends::{Backends, RefreshEvent, RefreshEventConsumer};
+pub use email::{Envelope, Flag};
pub use error::{MeliError, Result};
-pub use mailbox::backends::{Backends, RefreshEvent, RefreshEventConsumer};
-pub use mailbox::email::{Envelope, Flag};
pub use addressbook::*;