mzrs-sdk 0.1.21

High-level Rust SDK for Mezon platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Scoped handles for clans and channels.
//!
//! Handles carry a reference to the client and a pre-configured scope
//! (clan ID, channel ID, etc.) so callers don't have to repeat IDs on
//! every operation.

mod channel;
mod clan;

pub use channel::ChannelHandle;
pub use clan::ClanHandle;