blob: 5d57b974a1a537ea1dfd455cbdc7f634972f7618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use std::path::PathBuf;
use clap::Parser;
#[derive(Parser, Debug)]
pub struct JVStorageBuildArgument {
pub index_file: PathBuf,
pub storage: PathBuf,
#[arg(short = 'o', long = "output")]
pub output_file: Option<PathBuf>,
}
|