diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2019-06-12 17:11:31 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2019-06-12 17:11:31 +0200 |
commit | 7e0cf71fced55f9a213858fd1ab278a166e6e8b3 (patch) | |
tree | c8f0e15781f0f36fef588a1c84341da1652368e1 | |
parent | 3404e82e40ffd1055d89d72abe0e36bc8b24a656 (diff) | |
download | rust-zotapi-7e0cf71fced55f9a213858fd1ab278a166e6e8b3.tar.gz rust-zotapi-7e0cf71fced55f9a213858fd1ab278a166e6e8b3.tar.bz2 rust-zotapi-7e0cf71fced55f9a213858fd1ab278a166e6e8b3.zip |
Make Error type public.
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -27,6 +27,7 @@ mod item; mod xchan; pub use client::Client; +pub use error::Error; pub fn client(url: &str, user: &str, pw: &str) -> Client { |