1use once_cell::sync::Lazy;
23use crate::fst::FstTree;
45/// The FST containing the valid Bengali words for suggestions.
6static WORDS: Lazy<FstTree<&[u8]>> = Lazy::new(|| FstTree::from_fst(include_bytes!("words.fst")));
78pub mod avro;
9pub mod bangla;
10mod fst;