csusage-cli-parser 0.0.0

Coding agent CLI usage reports (ccusage fork with Claude Science support)
Documentation
//! Argument parsing and `--help` rendering for the ccusage CLI.
//!
//! Split from `ccusage-cli`, which holds the plain argument types the runtime
//! crates need: the parser embeds the generated help tables through a build
//! script, so keeping it here means editing help text does not invalidate
//! ccusage-core or any adapter.
use csusage_cli::{Command, SharedArgs};

mod arg_parser;
mod help;
mod parser;

pub struct Cli {
    pub command: Option<Command>,
    pub shared: SharedArgs,
}

#[cfg(test)]
mod help_codegen;

#[cfg(test)]
mod tests;