//! Dev command arguments
use clap::Args;
/// Start development mode with hot-reload
#[derive(Args, Debug)]
pub struct DevArgs {
/// Specific nodes to run (defaults to all configured nodes)
pub nodes: Vec<String>,
/// Watch for file changes and auto-rebuild
#[arg(long)]
pub watch: bool,
/// Skip initial build step
#[arg(long)]
pub no_build: bool,
}