mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-03-24 12:04:49 +03:00
13 lines
236 B
Rust
13 lines
236 B
Rust
//! Integration with `clap`
|
|
|
|
use clap::Parser;
|
|
|
|
/// Command line arguments
|
|
#[derive(Parser)]
|
|
#[clap(about, version)]
|
|
pub struct Args {}
|
|
|
|
/// Parse command line arguments into structured data
|
|
pub fn parse() -> Args {
|
|
Args::parse()
|
|
}
|