aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-01-03 23:42:37 +0100
committerHarald Eilertsen <haraldei@anduin.net>2020-01-03 23:42:37 +0100
commit970df3ea4169eb2fe935a0f50012503079b8636d (patch)
tree4b339e01e957ecf63e7a0d9a67ceabc77496e3d3 /src/lib.rs
parent0c76f0c9727a512475e29b5d099b5b7188f72052 (diff)
downloadrust-zotapi-970df3ea4169eb2fe935a0f50012503079b8636d.tar.gz
rust-zotapi-970df3ea4169eb2fe935a0f50012503079b8636d.tar.bz2
rust-zotapi-970df3ea4169eb2fe935a0f50012503079b8636d.zip
Make channel and network stream behave like the rest.
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 {