Skip to main content

wscall_client/
lib.rs

1//! Reusable WSCALL client SDK.
2//!
3//! This crate exposes `WscallClient`, event message types, client errors,
4//! and the shared attachment model used in requests and events.
5
6mod client_runtime;
7mod client_types;
8
9/// Main async client type used to connect to a WSCALL server.
10pub use client_runtime::WscallClient;
11pub use client_types::{ClientConnectionEvent, ClientDisconnectEvent, ClientError, EventMessage};
12/// Shared attachment model used by API calls and events.
13pub use wscall_protocol::FileAttachment;