//! `translators` is an *async/sync*, *thread-safe* library for **Google Translator**
//! with **no API key** and **no limits**.
//! It also includes support for **proxy**.
//!
//! Examples of usage in the [repository].
//!
//! [repository]: https://github.com/charl1e7/rust-translators/tree/main/examples
//! [google]: https://docs.rs/translators/0.2.0/translators/struct.GoogleTranslator.html
//! [proxy]: https://docs.rs/translators/0.2.0/translators/struct.GoogleTranslator.html#proxy
//!
//! ## Feature flags
//!
//! - `all`
//! - `tokio-async` - for enable async features
//! - `google` - for enable google-translate
//!
// general
pub use Error;
pub use Translator;
pub use GoogleTranslator;