use std::path::PathBuf;

use clap::Parser;

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
/// A tool to manage your key mappings for the river window manager
pub(super) struct Args {
    /// Path to mappings JSON file
    pub path: PathBuf,
}