about summary refs log tree commit diff stats
path: root/pkgs/by-name/ri/river-mk-keymap/src/cli.rs
blob: 55b87e1ad813c3614393be56f403edc3b2cb372c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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,
}