From 0c76f0c9727a512475e29b5d099b5b7188f72052 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Fri, 3 Jan 2020 23:32:44 +0100 Subject: Move Client out of the api objects. Also make constructor functions in the zotapi namespace. --- src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index eb5d897..c4a39c8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,8 +22,13 @@ mod group; mod item; mod xchan; +pub use abconfig::abconfig; +pub use abook::abook; pub use client::Client; pub use error::Error; +pub use group::{group, group_members}; +pub use item::item; +pub use xchan::xchan; pub fn client(url: &str, user: &str, pw: &str) -> Client { Client::new(url, user, pw) -- cgit v1.2.3