0g-storage-node/node/src/cli/mod.rs
2024-01-04 18:05:32 +08:00

8 lines
200 B
Rust

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)
}