1pub mod codec; 2 3mod error; 4 5pub use error::{CodecError, CodecErrorKind}; 6 7pub mod protocol; 8 9pub mod thrift; 10 11pub mod binary;