# My i18n Rust library
## Example
```rust
my_i18n_library::i18n!("path_of_the_translations"); //defaults to `i18n` if blank
fn main() {
// Each translation key generates a macro
println!("{}", i18n::hello_world!("en-us")); //the first argument is the language, the following are the arguments(optional)
}
```
The structure is the following :
```
└── *The name of your i18n folder*
└── en-US
└── *You can put as many JSON files as you want inside each language folder*
└── *Other languages*
```