1mod database; 2mod error; 3 4pub(crate) type Result<T> = std::result::Result<T, error::Error>; 5 6pub use database::Database; 7pub use error::Error;