typg-cli 5.0.19

CLI for typg (made by FontLab https://www.fontlab.com/)
Documentation
1
2
3
4
5
6
7
8
9
//! Entry point for the typg CLI.
//!
//! Made by FontLab https://www.fontlab.com/
fn main() {
    if let Err(err) = typg_cli::run() {
        eprintln!("error: {err}");
        std::process::exit(1);
    }
}