json-gettext 5.0.0

A library for getting text from JSON usually for internationalization.
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(debug_assertions)]
mod reloadable;

#[cfg(not(debug_assertions))]
mod embedded;

#[cfg(not(debug_assertions))]
pub use embedded::*;
#[cfg(debug_assertions)]
pub use reloadable::*;