mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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,
}