mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 13:52:34 +00:00
20 lines
323 B
Rust
20 lines
323 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[command(author, version, about, long_about = None)]
|
|
struct Cli {
|
|
/// Network port to use
|
|
port: u16,
|
|
}
|
|
|
|
fn main() {
|
|
let cli = Cli::parse();
|
|
|
|
println!("PORT = {}", cli.port);
|
|
}
|
|
|
|
#[test]
|
|
fn verify_cli() {
|
|
use clap::CommandFactory;
|
|
Cli::command().debug_assert()
|
|
}
|