use clap::Parser;
use std::path::PathBuf;
#[derive(Parser, Debug)]
#[command(name = "pathcify")]
#[command(author = "Your Name")]
#[command(version = "1.0")]
#[command(about = "Slugifies files and directories recursively")]
pub struct Cli {
pub path: PathBuf,
#[arg(short, long, default_value_t = false)]
pub lowercase: bool,
}