1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod character_definition;
pub mod connection;
pub mod dictionary;
pub mod dictionary_builder;
pub mod error;
pub mod file_util;
pub mod mode;
pub mod prefix_dict;
pub mod unknown_dictionary;
pub mod viterbi;
pub mod word_entry;

use crate::error::LinderaError;

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