1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use clap::Parser;

use crate::act_patch::PatchType;

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct ActArgs {
    #[arg(short, long)]
    pub folder_path: String,

    #[arg(short, long, default_value = "act_out")]
    pub out_folder_path: String,

    #[arg(short, long)]
    pub patch_type: PatchType,
}