aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2023-03-26 22:53:49 +0200
committerHarald Eilertsen <haraldei@anduin.net>2023-03-26 22:53:49 +0200
commit93ee81f05e1cb90c79949d5c57b1d7e3c272dd02 (patch)
tree67440c378b4ac0642e7c576ff8f1758f63e83be2 /src/lib.rs
parentb527b13422fc376bf056f6e3499eeb7a8ad94cf9 (diff)
downloadrust-zotapi-93ee81f05e1cb90c79949d5c57b1d7e3c272dd02.tar.gz
rust-zotapi-93ee81f05e1cb90c79949d5c57b1d7e3c272dd02.tar.bz2
rust-zotapi-93ee81f05e1cb90c79949d5c57b1d7e3c272dd02.zip
Implement "verify" API.HEADmaster
The verify API call returns a full channel object, including the corresponding xchan. I've added the xchan as a field in the Channel object, instead of having all the fields in one object like it is returned from the API.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 357591d..11ca297 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -22,6 +22,7 @@ mod error;
mod group;
mod item;
mod network_stream;
+mod verify;
mod xchan;
pub use abconfig::ABConfig;
@@ -32,6 +33,7 @@ pub use error::Error;
pub use group::{group, group_members};
pub use item::item;
pub use network_stream::network_stream;
+pub use verify::Channel;
pub use xchan::XChan;
#[cfg(test)]