1
2
3
4
5
6
7
8
9
pub mod assets;
pub mod compress;
pub mod decompress;
pub mod dictionary;
pub mod dictionary_builder;
pub mod error;
pub mod mode;

pub type LinderaResult<T> = Result<T, crate::error::LinderaError>;