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

14 lines
524 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!(--"miner-key" [KEY] "Sets miner private key"))
.arg(
arg!(--"blockchain-rpc-endpoint" [URL] "Sets blockchain RPC endpoint")
.default_value("http://127.0.0.1:8545"),
)
.arg(arg!(--"db-max-num-chunks" [NUM] "Sets the max number of chunks to store in db"))
2024-01-03 10:24:52 +00:00
.allow_external_subcommands(true)
}