1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! A [Riemann](http://riemann.io/) client library and command line interface.

extern crate libc;
extern crate protobuf;

/// Layer one: Protobuf implementation generated by `protoc --rust_out`.
pub mod proto;
pub mod transport;
pub mod client;
pub mod error;

pub use self::client::{Client};
pub use self::error::{Error, Result};