pub use *;
/// Translates the text with shotcut.
///
/// # Arguments
///
/// * `text` - The string slice text will be translated.
/// * `to` - The string slice language will be converted to.
///
/// # Examples
///
/// ```
/// fn main() {
/// println!("{:?}", rustlate::translate_auto("hello", "tr"));
/// }
/// ```