flare-im-core 0.1.1

A high performance instant messaging core library for Flare framework
Documentation

pub mod connections;

#[cfg(feature = "client")]
pub mod client;

#[cfg(feature = "server")]
pub mod server;

pub mod telecom;

pub use connections::Connection;

#[cfg(feature = "client")]
pub use client::client::Client;
#[cfg(feature = "client")]
pub use client::config::ClientConfig;

#[cfg(feature = "server")]
pub use server::server::Server;