//! LiRAYS Rust websocket client.
//!
//! This crate provides:
//! - [`Client`] for async command and subscription operations,
//! - [`ConnectionOptions`] for connection setup,
//! - variable model structs for namespace creation and metadata edits.
/// Error types used by the client.
/// Main async LiRAYS client.
pub use Client;
/// Explicit connection configuration.
pub use ConnectionOptions;
/// Model types used by create/edit APIs.
pub use ;