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

///
/// Hersir is a command line tool that lets you deploy a network of Jormungandr nodes
///
#[derive(Parser)]
pub struct Args {
    /// Path to config file
    #[clap(long, short)]
    pub config: PathBuf,

    /// Enable verbose mode
    #[clap(long, short)]
    pub verbose: bool,
}