14 lines
218 B
Rust
14 lines
218 B
Rust
/// Command
|
|
#[derive(argh::FromArgs)]
|
|
struct Cmd {
|
|
#[argh(positional)]
|
|
/// positional
|
|
positional: Vec<String>,
|
|
|
|
#[argh(positional, greedy)]
|
|
/// remainder
|
|
remainder: Vec<String>,
|
|
}
|
|
|
|
fn main() {}
|