ckb_app_config/
cli.rs

1
2
3
4
5
6
7
8
9
10
//! CKB command line arguments parser.

/// binary file name(ckb)
pub const BIN_NAME: &str = "ckb";
/// Subcommand `miner`.
pub const CMD_MINER: &str = "miner";
/// Subcommand `reset-data`.
pub const CMD_RESET_DATA: &str = "reset-data";
/// Subcommand `run`.
pub const CMD_RUN: &str = "run";