use clap::Parser;
#[derive(Parser, Debug)]
#[command(name = "ztl",
version,
about = "Run npm/yarn/pnpm scripts interactively",
long_about = "A Rust-based interactive CLI tool for running package.json scripts")]
pub struct CliArgs {}
impl CliArgs {
pub fn parse() -> Self {
<Self as Parser>::parse()
}
}