mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-19 04:30:10 +00:00
14 lines
236 B
Rust
14 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()
|
||
|
}
|