refluxer 0.2.0

Rust API wrapper for Fluxer
Documentation
pub mod error;
pub mod model;
pub mod snowflake;

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

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

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

pub use error::Error;
pub use model::id::*;
pub use snowflake::{FLUXER_EPOCH_MS, Snowflake};

#[cfg(feature = "http")]
pub use http::HttpClient;

#[cfg(feature = "gateway")]
pub use gateway::{GatewayConnection, GatewayEvent};

#[cfg(feature = "client")]
pub use client::{Client, ClientBuilder, Context, EventHandler};