openlark-client 0.15.0

OpenLark 高级客户端 - 统一入口点和轻量级服务注册表
Documentation
// WebSocket 客户端模块
//
// 提供WebSocket连接和事件处理功能

mod client;
mod frame_handler;
mod state_machine;

#[cfg(feature = "websocket")]
// client 模块显式导出
pub use client::{
    ClientConfig, EndPointResponse, EventDispatcherHandler, LarkWsClient, WsClientError,
    WsClientResult, WsCloseReason, WsEvent,
};

pub use frame_handler::{FrameHandler, FrameType};
pub use state_machine::{ConnectionState, WebSocketStateMachine};

#[cfg(test)]
mod tests;