aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c4a39c8..d89eb46 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,18 +16,22 @@
mod abconfig;
mod abook;
+mod channel_stream;
mod client;
mod error;
mod group;
mod item;
+mod network_stream;
mod xchan;
pub use abconfig::abconfig;
pub use abook::abook;
+pub use channel_stream::channel_stream;
pub use client::Client;
pub use error::Error;
pub use group::{group, group_members};
pub use item::item;
+pub use network_stream::network_stream;
pub use xchan::xchan;
pub fn client(url: &str, user: &str, pw: &str) -> Client {