diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2023-03-26 22:53:49 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2023-03-26 22:53:49 +0200 |
commit | 93ee81f05e1cb90c79949d5c57b1d7e3c272dd02 (patch) | |
tree | 67440c378b4ac0642e7c576ff8f1758f63e83be2 /src/lib.rs | |
parent | b527b13422fc376bf056f6e3499eeb7a8ad94cf9 (diff) | |
download | rust-zotapi-93ee81f05e1cb90c79949d5c57b1d7e3c272dd02.tar.gz rust-zotapi-93ee81f05e1cb90c79949d5c57b1d7e3c272dd02.tar.bz2 rust-zotapi-93ee81f05e1cb90c79949d5c57b1d7e3c272dd02.zip |
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.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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)] |