char_coal/lib.rs
1//! Charcoal, a command line dictionary
2//!
3//! Charcoal uses youdao dict api and google speech. Inspired by wudao-dict.
4
5pub mod app;
6pub mod word;
7
8pub use app::builder::AppBuilder;
9pub use app::cache::Cache;
10pub use app::cli::{Cli, Commands};
11pub use app::config::Config;
12pub use app::App;
13pub use word::speech::Speech;
14pub use word::{WordEntry, WordQuery};