glossa-cli 0.0.0

A command-line (binary) tool that generates Rust source code or bincode files containing localized text by calling the glossa-codegen API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// #![cfg_attr(__unstable_doc, feature(doc_auto_cfg, doc_notable_trait))]

mod parser;

pub(crate) mod l10n;
pub use l10n::locale_registry::all_locales;

pub mod options;
pub use options::Cli;

pub mod envs;

pub mod static_data;

pub mod context;