stenotype/
lib.rs

1#![warn(missing_docs)]
2
3//! Utilities for machine stenography
4
5mod dict;
6mod layout;
7mod stroke;
8
9pub use dict::*;
10pub use layout::*;
11pub use stroke::*;
12
13#[cfg(feature = "engine")] pub mod engine;