helix/dna/cmd/decompile.rs
1use clap::Args;
2use std::path::PathBuf;
3use crate::mds::decompile;
4
5#[derive(Args)]
6pub struct DecompileArgs {
7 /// Target directory to analyze (defaults to current directory)
8 #[arg(short, long)]
9 input: Option<PathBuf>,
10
11 /// Output file path (defaults to stdout if not specified)
12 #[arg(short, long)]
13 output: Option<PathBuf>,
14}