extern crate bytes;
extern crate futures;
#[macro_use]
extern crate log;
extern crate rmpv;
extern crate tokio;
mod codec;
mod endpoint;
mod errors;
pub mod message;
pub use endpoint::{
serve, Ack, Client, Endpoint, IntoStaticFuture, Response, Service, ServiceWithClient,
};
pub use rmpv::{Integer, Utf8String, Value};