1//! # i18n library for Rust
2//!
3//! This library provides a simple way to add internationalization to your Rust applications by using JSON files.
4mod error;
5mod lingua;
67pub mod prelude {
8pub use crate::error::LinguaError;
9pub use crate::lingua::Lingua;
10}