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