0g-storage-node/node/src/cli/mod.rs

14 lines
631 B
Rust
Raw Normal View History

2024-01-03 10:24:52 +00:00
use clap::{arg, command, Command};
pub fn cli_app<'a>() -> Command<'a> {
command!()
.arg(arg!(-c --config <FILE> "Sets a custom config file"))
.arg(arg!(--"log-config-file" [FILE] "Sets log configuration file (Default: log_config)"))
2024-07-11 03:54:13 +00:00
.arg(arg!(--"miner-key" [KEY] "Sets miner private key (Default: None)"))
.arg(
2024-07-11 03:54:13 +00:00
arg!(--"blockchain-rpc-endpoint" [URL] "Sets blockchain RPC endpoint (Default: http://127.0.0.1:8545)")
)
2024-07-11 03:54:13 +00:00
.arg(arg!(--"db-max-num-chunks" [NUM] "Sets the max number of chunks to store in db (Default: None)"))
2024-01-03 10:24:52 +00:00
.allow_external_subcommands(true)
}