summaryrefslogtreecommitdiff
path: root/src/cmds/arg/sheetdump.rs
blob: abd0d29292576a0390f7b66f38b3812bb2f3bb63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::path::PathBuf;

use clap::Parser;

#[derive(Parser, Debug)]
pub struct JVSheetdumpArgument {
    pub sheet_file: PathBuf,

    #[arg(short, long = "no-sort")]
    pub no_sort: bool,

    #[arg(long = "no-pretty")]
    pub no_pretty: bool,
}