mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-04-04 15:35:18 +00:00
8 lines
200 B
Rust
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)
|
||
|
}
|