flare-core 0.1.2

A high-performance, reliable long-connection communication toolkit for Rust, supporting WebSocket and QUIC protocols with features like authentication, device management, serialization negotiation, and protocol racing.
1
2
3
4
5
6
7
8
9
//! 服务器操作处理器模块
//! 
//! 提供轻量级的服务器操作接口,用于消息发送和连接管理
//! 避免在需要发送消息的地方注入整个 Server 实例

mod default;

pub use default::DefaultServerHandle;
pub use default::ServerHandle;