upodesh/
lib.rs

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