1pub mod assets; 2pub mod compress; 3pub mod decompress; 4pub mod dictionary; 5pub mod dictionary_builder; 6pub mod error; 7pub mod mode; 8 9pub type LinderaResult<T> = Result<T, crate::error::LinderaError>;