mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
12 lines
323 B
Rust
12 lines
323 B
Rust
use clap::Command;
|
|
use clap_complete::generate;
|
|
use clap_complete_fig::Fig;
|
|
use std::io;
|
|
|
|
fn main() {
|
|
let mut cmd = Command::new("myapp")
|
|
.subcommand(Command::new("test").subcommand(Command::new("config")))
|
|
.subcommand(Command::new("hello"));
|
|
|
|
generate(Fig, &mut cmd, "myapp", &mut io::stdout());
|
|
}
|