use clap::Parser;
use std::path::PathBuf;
#[derive(Parser)]
#[command(
version,
name = "weblate-luau",
about = "Generates a Luau table for weblate translations that are represented in basic JSON. \n\
See https://gitlab.com/warsaw-revamped-oss/modding/weblateluau."
)]
pub struct Args {
pub root: PathBuf,
pub output: PathBuf,
}