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

8 lines
200 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"))
.allow_external_subcommands(true)
}