15 lines
284 B
Rust
15 lines
284 B
Rust
// SPDX-License-Identifier: MIT
|
|
mod bamboo;
|
|
mod engine;
|
|
mod english;
|
|
pub mod event;
|
|
mod input_method;
|
|
pub mod spelling;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub use engine::Engine;
|
|
pub use engine::EngineEvent;
|
|
pub use event::{Command, EventStore, InputEvent};
|
|
pub use input_method::InputMethod;
|