diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -27,17 +27,13 @@ mod xchan; pub use abconfig::abconfig; pub use abook::abook; pub use channel_stream::channel_stream; -pub use client::Client; +pub use 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 { - Client::new(url, user, pw) -} - #[cfg(test)] mod tests { #[test] |