adapt 0.0.0-alpha0

Official wrapper around for the Adapt chat platform API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Low-level API wrapper for the Adapt REST and WebSocket APIs.

extern crate core;

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

pub use error::{Error, Result};
pub use essence;