1
2
3
4
5
6
7
pub mod error;
pub mod mode;
pub mod tokenizer;

use crate::error::LinderaError;

pub type LinderaResult<T> = Result<T, LinderaError>;