pockingbird 0.2.0

Report-only CLI that finds duplicate translation keys across gettext .po catalogs
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Binary entrypoint (behind the `cli` feature). Parses args, runs the
//! pipeline, and exits with the returned code (always `0` in the MVP).

use clap::Parser;

use pockingbird::cli::{run, Cli};

fn main() {
    let cli = Cli::parse();
    std::process::exit(run(cli));
}