mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Node command arguments
//!
//! Internal command for running bundled nodes directly.
//! Used by standalone mode to avoid requiring project builds.

use clap::Args;

#[derive(Args, Debug)]
pub struct NodeArgs {
    /// Name of the node to run
    pub name: String,
}