1#![warn(rust_2018_idioms)] 2#![allow(dead_code)] 3 4pub mod config; 5pub mod conn; 6mod error; 7pub mod message; 8 9pub use error::Error;