lingua_i18n_rs/
lib.rs

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;
6
7pub mod prelude {
8    pub use crate::error::LinguaError;
9    pub use crate::lingua::Lingua;
10}