json-gettext 4.0.0

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

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

#[cfg(debug_assertions)]
pub use debug::*;

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