use clap::Parser;
#[derive(Parser, Debug)]
#[clap(name = "timber")]
#[clap(about = "Timber: Fell Your Logs Fast", long_about = None)]
pub struct Args {
pub file: String,
#[clap(short, long)]
pub chop: Option<String>,
#[clap(short, long)]
pub level: Option<String>,
#[clap(long)]
pub trend: bool,
#[clap(long)]
pub stats: bool,
}