flare-im-core 0.1.1

A high performance instant messaging core library for Flare framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "client")]
pub mod client;
#[cfg(feature = "server")]
pub mod server;

// 客户端导出
#[cfg(feature = "client")]
pub use self::client::{FlareClient, FlareClientBuilder, ConnectionInfo, Protocol};

// 服务端导出
#[cfg(feature = "server")]
pub use self::server::{FlareServer, FlareServerBuilder};