blob: 4f32ec5d469d1b022139027c8b8a2ed0457cf323 (
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: Option<PathBuf>,
#[arg(short, long = "no-sort")]
pub no_sort: bool,
#[arg(long = "no-pretty")]
pub no_pretty: bool,
}
|